Some time ago, Foxmaths! had a nice post about a power tower
To make this more precise, we say
.
And ask for the limit of as
. A student of mine at physics camp asked me about this problem with the specific value
. He was stuck. He assumed there was some limit
, and then wrote
substituting an infinite tower of ‘s for itself less one. This is equivalent to setting
in our recursion relation, meaning that we’re finding what the limit must be if it exists.
The problem is that by inspection there are two solutions: and
. But the real answer is two. Plugging it into the calculator and going a few iterations, we see that this is correct.
I didn’t know why it was two rather than four. Neither did anyone else around. But there were a lot of people around. Pretty soon we had six or eight people all trying to find why the thing went to two rather than four.
We tried using different values, like
,
which didn’t work at all – it blew up. But use rather than
for the tower and it works fine – going to about
, although by straightforward algebra there still appear to be two solutions, the other being
. Use
and it goes to
again, rather than
. Use
and it goes to
.
Then we tried fractional numbers to their own root. Take a power tower with a bunch of ‘s stacked and you converge to
. Same
(converges to
). But
converges towards
. Trial and error showed that for
from zero to
, a power tower of
converges to
. Then, above
, it converges to something smaller and smaller, until for very large
it converges towards one. This makes some sense, because
has a maximum at
and converges to
as
.
That was as far as we got before 11PM, when I had to send them all to bed without any dessert. Until I realized: duh. Draw a picture.
The recurrence relation was
with some base we’re considering. So let’s draw
as a function of
That way, by going from a value on the x-axis to the value of the plotted function, we do one iteration. The relevant function is an exponential.
To do another iteration, we have to move to the correct x-value, so we can drop to the new y-value. That is, we want to go from the y-value we’re at, and make that the x-value. So plot the line , then trace over horizontally to that line. Now you can drop down to the new value of the function, conducting another iteration. Doing this over and over, we get a series of steps, and each step represents a new iteration.

A heuristic representation of the series we're talking about here. Each blue step marks a new iteration. You start at the red line, drop to the green line to iterate, then cut over horizontally to the red line to get ready to do it again.
Repeating this process, we see that where the lines intersect there are solutions to . But only one of those solutions is “stable”. If we’re close to the lower one, we’ll get closer on the next try. But if we’re close to the higher one, we’ll get further away on the next try. So the power tower converges towards the lower intersection.
As we change the base , the roots move. As
increases from a small value, the roots come in towards each other because the exponential is getting steeper. When
gets to
, the two lines are tangent, which is an easy calculus problem. Then the roots coincide. If
increases beyond that, the lines never cross and the series diverges.
We can also see why using converges to
for
. It's because
is clearly a solution for
in
.
The two roots have one bigger than and one less. And for
, we converge to
, because we converge to the smaller root.
July 17, 2011 at 3:24 am
[...] I wrote about this a while ago. You can read an intuitive discussion here. [...]