| The following diagram shows why this formula works

Moving from a 2-side to a 3-side we have to add 2 more rows.
To find a formula for the number of small hexagons in an n-sided
hexagon, look at the following pattern
| Side |
# of hexagons |
| 1 |
1 |
| 2 |
2 + 3 + 2 = 7 |
| 3 |
3 + 4 + 5 + 4 + 3 = 19 |
| 4 |
4 + 5 + 6 + 7 + 6 + 5 + 4 = 37 |
The pattern is clear, and there's a nice way to see how to turn it
into a formula. For example, taking the expression for the 4-side
hexagon, we can rewrite this as
0 + 1 + 2 + 3 + 2 + 1 + 0
4 + 4 + 4 + 4 + 4 + 4 + 4
That is, we add up the numbers 1 to n - 1 twice and subtract n
- 1, then we add n to itself n - 1 times. After a bit of algebra, this
give the formula below:
| Side |
# of hexagons |
| n |
3n2 - 3n + 1 |
This means that the numbers 1 up to 3n2 - 3n + 1 have to
be arranged into 2n - 1 rows, each having the same total. This can only
be done if the total of all these numbers is itself divisible by 2n - 1.
Trigg showed that this can only happen when 5/(2n-1) is an integer,
which means that n = 1 (the trivial case of one hexagon) and n = 3 (the
Radcliffe hexagon) are the only values of n for which a magic hexagon
can be found. And the only possibility turns out to be the one shown on
the previous page.
End of story? We don't think so! |