Megan Thomson – Winner of the ‘College Choice Award’ in the 2021 Teddy Rocks Maths Essay Competition
The Legend goes, that in the temple of Benares, beneath the dome which marks the centre of the world, there lies a brass plate with three diamond needles fixed to it. At the beginning of time God placed 64 disks of pure gold upon the first needle, largest resting on the brass plate, with each disk progressively smaller until reaching the top. He then ordained that a group of priests should transfer them to the third needle and declared that they must work in accordance with the unchangeable laws of Brahma. The first law states that ‘Thou shall not move more than one disk at a time’. The second law states that ‘no disk should ever rest upon a disk smaller than itself’. The priests reportedly worked day and night at their task. It is said that, when they finish, the Tower will crumble and the world will end.

This grand story in fact accompanies a toy puzzle, the Tower of Hanoi, invented by Edouard Lucas, a French mathematician in 1883. Luckily for people trying to solve the puzzle, the tower of Hanoi is a little smaller than the Tower of Brahma, involving only 8 disks instead of 64. One might be confused at first, it’s not immediately obvious that the puzzle has a solution, just move the tower from one peg to another in accordance to the rules, what’s the challenge? Well after a small go at the puzzle or with a little thought, the question arises: what is the best way to do this? What’s the smallest number of moves required to solve the puzzle for n disks?
Instead of focusing on how many moves it will specifically take for the Tower of Hanoi’s 8 disks or the tower of Brahma’s 64 disks – generalization helps, as it allows you to scale down the problem. This is part of the reason I find this problem so interesting; it is a great example of generalizing to spot patterns and recurrences; consequently, it serves as a useful introduction to the mathematics of computer science and algorithms.
The first step to solving this problem is to establish appropriate notation: Tn will be the minimum number of moves required to transfer n disks, following Lucas’s rules. Thus, for the small values of n we can state: T0=0, T1=1 and T2=3.

Looking more closely at how to solve for three disks, gives some clues on how to solve on a larger scale. First get the smallest two disks off the largest disk (requiring T2 moves), then transfer the largest disk to the other peg (requiring one move) and lastly transfer the two smaller disks back onto the larger one (requiring another T2 moves). This process can be quite easily generalized. Move Tn-1 disks to another peg, transfer the largest disk, then transfer Tn-1 disks back onto the large one. Hence, transferring n disks requires 2Tn-1 + 1 moves:
Tn = 2Tn-1 + 1 for n > 0
T0 = 0
This recurrence equation can compute for any value of n. However, for large values of n it would take a long time to work out – so a nice, neat closed form equation for Tn would be more useful. Looking at the first few values for Tn could help:
T3 = 2 × 3 + 1 = 7
T4 = 2 × 7 + 1 = 15
T5 = 2 × 15 + 1 = 31
T6 = 2 × 31 + 1 = 63
T7 = 2 × 6… Bingo!
There seems to be a pattern: Tn = 2n – 1 for n ≥ 0
Lastly, the statement needs to be checked to ensure that it is true for all values of n, as knowing it is true for the first 6 values, while a good indication, doesn’t prove it is true for n ≥ n0. This part is pretty simple, as it just involves substituting the new equation into one we already know is true for all values of n.
Tn = 2Tn-1 + 1 = 2(2n-1 – 1) + 1 = 2n –1 Proved.
What’s particularly fascinating to me about this puzzle is its connection to Sierpinski’s triangle. When graphing all the possible configurations of a game of 3 disks and 3 pegs you get a sort of ‘triangle network’, which is officially called a Hanoi graph. The positions are encoded using a triple. For example, disk one and disk 3 on peg 2, with disk 2 on peg 3 will look like (2, 3, 2).

As you consider more disks, the pattern continues, for instance here is a graph representing 4 disks.

Following this notion of increasing the number of disks, an intriguing question emerges. What would the graph for an infinite number of disks look like? Well, regard the image below:

This is a fractal, known as Sierpinski’s triangle. It can be generated from another infinite process. Step 1 is to draw an equilateral triangle. Step 2 is to divide the equilateral triangle into 4 smaller congruent equilateral triangles, discarding the central triangle. Step 3 is to repeat step 2 in the smaller triangles infinitely many times.
Whilst being quite beautiful and interesting, one still might ask: what is the purpose of these connections? How are they useful? Firstly, let’s entertain this question: suppose you travel around Sierpinski’s triangle without ever leaving the fractal, what is the average distance between two points? Well, a lot of times in mathematics problems are like boulders, blocking the middle of the road. At first you might try to push the boulder or dig through it – facing the problem head on. However, in many cases stepping back from the problem, looking at its connections to other areas of mathematics provides an easier route to your answer – you could just climb over the boulder. Convoluted metaphor aside, no one had been able to solve this problem until Hinz used Hanoi graphs to figure out the average distance is 466/885 (given the length of one side of the triangle is 1).
Now, turning attention back to the poor priests, who are of course still dutifully moving disks, and will be for very long time as for n = 64 there are around 18 quintillion moves (264 – 1). Even at the rate of one move per second it will still take the priests 5.85 quadrillion years to complete. All in all, it’s safe to assume that the temple has some years of life left, as does the world.
[…] Megan Thomson ’The Tower of Hanoi’ […]
LikeLike
I have always liked the fact that once you know the order in which to move the disks it is easy to extend the pattern. Assume there are four disks and that we call the smallest disk A,the next one B, the next one C and, finally, the largest one D. Then we have to move the smallest one first so we have the trivial sequence A. The rule to extend the sequence goes as follows: “Double the sequence and replace the last letter with the next one in the alphabet”. In our case the doubling of the sequence gives “AA” and replacing the last letter gives “AB”. So, possibly not surprisingly, we move disk B second.
A re-application of the whole rule gives the sequence “ABAC” so the next two disks to move are A and C. The next application of the rule gives the sequence “ABACABAD” which matches the solution for three disks shown above. The final sequence for four disks is, therefore, “ABACABADABACABAE”.
The divisions of an inch on a standard school ruler show a remarkably similar pattern.
LikeLike