Magic Square – A Game of Magic Egyptian Tilings

egyptian-fractionsmagic squaretiling

Background

I've recently been formulating a game that incorporates elements from Egyptian fractions, magic squares, and tilings. It is a single-player game in which the objective is to tessellate a square with sides of length $1$ with tiles that have the surface area of unit fractions. A sum of distinct unit fractions is called an Egyptian fraction.

Let's call an 'Egyptian unity sum set' (EUSS) a set of distinct positive integers $\{ a_{1}, a_{2}, \dots , a_{n} \}$ of size $n$ such that their Egyptian fraction sum to $1$. So we have $$ \frac{1}{c_{1}} + \frac{1}{c_{2}} + \dots + \frac{1}{c_{n}} = 1. $$

For instance, $\{2,3,6\}$ is an EUSS for $n=3$.

Moreover, we say that an Egyptian unity sum set is composite if $c_{1}, \dots , c_{n}$ are all composite numbers. An example of a composite EUSS is $\{4, 6, 8, 9, 10, 12, 15, 18, 24\}$. In this case, $n=9$. There are no such sets for $n<9$. But for every $n \geq 9$, there is at least one. More information can be found in this question.

The Game

We will be tiling unit squares with rectangles that each have the surface area corresponding to the reciprocal of the elements of the composite Egyptian sum sets. The sides of the rectangles are also of unit fraction length. The lengths must correspond to a factorization of the multiplicative inverse of the numbers in the composite Egyptian sum sets. That is, for a composite EUSS $\{c_{1}, \dots , c_{n}\}$ we have:

\begin{align*}1 &= \ \ \ \ \ \ \ \ \ \frac{1}{c_{1}} \ \ \ \ \ \ \ \ + \ \ \ \ \ \ \ \ \frac{1}{c_{2}} \ \ \ \ \ \ \ \ + \ \ \ \ \dots \ \ \ + \frac{1}{c_{n}} \newline
&= \left(\frac{1}{a_{1}} \times \frac{1}{b_{1}} \right) + \left(\frac{1}{a_{2}} \times \frac{1}{b_{2}} \right) + \dots + \left(\frac{1}{a_{n}} \times \frac{1}{b_{n}} \right)\end{align*}
The equation below describes some composite EUSS factorization. The $n$ rectangles thus have dimensions $\left(\frac{1}{a_{1}} \times \frac{1}{b_{1}}\right), \dots , \left(\frac{1}{a_{n}} \times \frac{1}{b_{n}} \right)$. Here, we require that $a_{i} \neq 1$ and $a_{i} \neq c_{i}$ for all $i$. The same holds for all $b_{i}$. If there are multiple possible factorizations of a number (like $12 = 3 \times 4 = 2 \times 6 $), then one may use tiles with unit fraction lenghts that correspond to the factorization of your own choosing.

Finally, we require that all the rectangles are used exactly once to tile the unit square. So no double tiles or missing tiles are allowed. A tiling with all such rectangles used only once is called a magic Egyptian tiling (MET).

Non-examples

I've been trying to find METs for the EUSS described above: $\{4, 6, 8, 9, 10, 12, 15, 18, 24\}$. Unfortunately, I haven't been successful yet. Here are two failed attempts at tilings. The size of the rectangles is annotated in green.

(1)

                                            enter image description here

We see that it is almost an MET, but not quite. The remaining blue tile of size $\frac{1}{15}$ does not fit in the remaining red space of the unit square. Moreover, the lengths of the sides of the red rectangle are not both unit fractions.

Here, we employed the factorization \begin{align*} 1 &= \ \ \ \ \ \frac{1}{4} \ \ \ \ \ + \ \ \ \ \ \frac{1}{6} \ \ \ \ \ + \ \ \ \ \ \ \frac{1}{8} \ \ \ \ \ + \ \ \ \ \ \ \frac{1}{9} \ \ \ \ \ + \ \ \ \ \frac{1}{10} \ \ \ \ \ + \ \ \ \ \frac{1}{12} \ \ \ \ \ + \ \ \ \ \frac{1}{15} \ \ \ \ \ + \ \ \ \ \frac{1}{18} \ \ \ \ \ + \ \ \ \ \frac{1}{24} \newline
&= \left( \frac{1}{2} \times \frac{1}{2} \right) + \left( \frac{1}{2} \times \frac{1}{3} \right) + \left( \frac{1}{2} \times \frac{1}{4} \right) + \left( \frac{1}{3} \times \frac{1}{3} \right) + \left( \frac{1}{2} \times \frac{1}{5} \right) + \left( \frac{1}{2} \times \frac{1}{6} \right) + \left( \frac{1}{3} \times \frac{1}{5} \right) + \left(\frac{1}{3} \times \frac{1}{6} \right) + \left(\frac{1}{2} \times \frac{1}{12} \right). \end{align*}

We call this factorization $(3)$.

We now move to the second non-example:

(2)

                                            enter image description here

(Please ignore the unevenness of the square – this is due to my poor drawing skills.)

In this case, all rectangles do tile the unit square. However, there's trouble in paradise: some of the tiles are used twice. The tiles of size $\frac{1}{12}$ and $\frac{1}{18}$ are both employed twice. Moreover, the tiles of size $\frac{1}{10}$ and $\frac{1}{15}$ are missing. This is not allowed.

Questions

  1. Is there an MET for the EUSS with the factorization described in $(3)$ ?
  2. Does an MET exist for every composite EUSS factorization?
  3. If not, does an MET exist for every composite EUSS?
  4. If not, does an MET exist for all $n \geq 9$ ?

Best Answer

There is no MET for $n=9$, so the answer to all of your questions is negative.

Here’s Java code that generates all composite EUSSs for a given value of $n$ and finds all METs for them. The only composite EUSS for $n=9$ is the one you tried, and no MET for it is found. There are $46$ composite EUSSs for $n=10$, and $11$ of them (marked with an asterisk) admit at least one MET:

4, 6, 8, 9, 10, 12, 14, 15, 39, 6552
4, 6, 8, 9, 10, 12, 14, 15, 40, 1260
4, 6, 8, 9, 10, 12, 14, 15, 42, 504
4, 6, 8, 9, 10, 12, 14, 15, 45, 280
4, 6, 8, 9, 10, 12, 14, 15, 56, 126
4, 6, 8, 9, 10, 12, 14, 15, 72, 84
4, 6, 8, 9, 10, 12, 14, 16, 35, 720
4, 6, 8, 9, 10, 12, 14, 18, 28, 840 *
4, 6, 8, 9, 10, 12, 14, 18, 30, 280 *
4, 6, 8, 9, 10, 12, 14, 18, 35, 120
4, 6, 8, 9, 10, 12, 14, 18, 40, 84 *
4, 6, 8, 9, 10, 12, 14, 20, 24, 1260
4, 6, 8, 9, 10, 12, 14, 20, 35, 72
4, 6, 8, 9, 10, 12, 14, 21, 24, 315
4, 6, 8, 9, 10, 12, 14, 24, 35, 45
4, 6, 8, 9, 10, 12, 15, 16, 30, 720
4, 6, 8, 9, 10, 12, 15, 16, 32, 288
4, 6, 8, 9, 10, 12, 15, 16, 36, 144
4, 6, 8, 9, 10, 12, 15, 16, 45, 80
4, 6, 8, 9, 10, 12, 15, 16, 48, 72
4, 6, 8, 9, 10, 12, 15, 20, 24, 180 *
4, 6, 8, 9, 10, 12, 15, 20, 30, 72
4, 6, 8, 9, 10, 12, 15, 20, 40, 45
4, 6, 8, 9, 10, 12, 15, 21, 24, 126
4, 6, 8, 9, 10, 12, 15, 21, 28, 72
4, 6, 8, 9, 10, 12, 15, 22, 24, 99
4, 6, 8, 9, 10, 12, 15, 24, 27, 54
4, 6, 8, 9, 10, 12, 15, 24, 30, 45
4, 6, 8, 9, 10, 12, 16, 18, 22, 2640 *
4, 6, 8, 9, 10, 12, 16, 18, 24, 240 *
4, 6, 8, 9, 10, 12, 16, 18, 30, 80 *
4, 6, 8, 9, 10, 12, 16, 18, 40, 48 *
4, 6, 8, 9, 10, 12, 18, 20, 24, 60 *
4, 6, 8, 9, 10, 12, 18, 20, 30, 40 *
4, 6, 8, 9, 10, 12, 18, 21, 28, 40
4, 6, 8, 9, 10, 14, 15, 18, 20, 280
4, 6, 8, 9, 10, 14, 15, 18, 21, 168
4, 6, 8, 9, 10, 14, 15, 18, 24, 84
4, 6, 8, 9, 10, 14, 15, 18, 28, 56
4, 6, 8, 9, 10, 14, 15, 18, 35, 40
4, 6, 8, 9, 10, 14, 18, 20, 24, 35
4, 6, 8, 9, 10, 15, 16, 18, 20, 80
4, 6, 8, 9, 10, 15, 16, 18, 24, 48
4, 6, 8, 9, 10, 15, 18, 20, 24, 30 *
4, 6, 8, 9, 10, 15, 18, 21, 24, 28
4, 6, 8, 9, 12, 14, 15, 18, 24, 35

Here are images of METs for the $11$ composite EUSSs with $n=10$ that admit them. Areas less than $\frac1{100}$ aren’t labelled because there’s not enough space; since there’s at most one of those per image, you can deduce it from the EUSS. The factorizations that are missing for lack of space can be deduced from those of the other rectangles. You can click on the images to get them in full resolution; then the rectangle with area $\frac1{2640}$ (in the fifth image) appears at the lower right.

$4, 6, 8, 9, 10, 12, 14, 18, 28, 840$:

MET 1

$4, 6, 8, 9, 10, 12, 14, 18, 30, 280$:

MET 2

$4, 6, 8, 9, 10, 12, 14, 18, 40, 84$:

MET 3

$4, 6, 8, 9, 10, 12, 15, 20, 24, 180$:

MET 4

$4, 6, 8, 9, 10, 12, 16, 18, 22, 2640$:

MET 5

$4, 6, 8, 9, 10, 12, 16, 18, 24, 240$:

MET 6

$4, 6, 8, 9, 10, 12, 16, 18, 30, 80$:

MET 7

$4, 6, 8, 9, 10, 12, 16, 18, 40, 48$:

MET 8

$4, 6, 8, 9, 10, 12, 18, 20, 24, 60$:

MET 9

$4, 6, 8, 9, 10, 12, 18, 20, 30, 40$:

MET 10

$4, 6, 8, 9, 10, 15, 18, 20, 24, 30$:

MET 11

Related Question