A blueprint for large numbers
Consider a modest function โA,โ which takes a number and adds one to it.
A ( 1 ) = 2 A ( 2 ) = 3 A ( 99 ) = 100 \begin{aligned}
A(1) &= 2 \\
A(2) &= 3 \\
A(99) &= 100
\end{aligned} A ( 1 ) A ( 2 ) A ( 99 ) โ = 2 = 3 = 100 โ
Itโs not much of an operator, and is easily defeated by its counterpart: โevil A.โ
A ห ( 2 ) = 1 A ห ( 3 ) = 2 A ห ( 100 ) = 99 \begin{aligned}
\check A(2) &= 1 \\
\check A(3) &= 2 \\
\check A(100) &= 99
\end{aligned} A ห ( 2 ) A ห ( 3 ) A ห ( 100 ) โ = 1 = 2 = 99 โ
We can apply โAโ multiple times.
A ( A ( 1 ) ) = A ( 2 ) = 3 A ( A ( A ( A ( 1 ) ) ) ) = 5 \begin{aligned}
A(A(1)) = A(2) &= 3 \\
A(A(A(A(1)))) &= 5
\end{aligned} A ( A ( 1 )) = A ( 2 ) A ( A ( A ( A ( 1 )))) โ = 3 = 5 โ
Repeating โAโ is a little tiring, so we can use a superscript to make things a little more concise.
A ( A ( 1 ) ) = A 2 ( 1 ) = 3 A ( A ( A ( A ( 10 ) ) ) ) = A 4 ( 10 ) = 14 \begin{alignedat}{2}
A(A(1)) &= A^2(1) &&= 3 \\
A(A(A(A(10)))) &= A^4(10) &&= 14
\end{alignedat} A ( A ( 1 )) A ( A ( A ( A ( 10 )))) โ = A 2 ( 1 ) = A 4 ( 10 ) โ โ = 3 = 14 โ
Since the superscript implies โadd 1 this many times,โ the following properties unfold:
A n ( 1 ) = 1 + n A n ( 10 ) = 10 + n A n ( 99 ) = 99 + n \begin{aligned}
A^n(1) &= 1 + n \\
A^n(10) &= 10 + n \\
A^n(99) &= 99 + n
\end{aligned} A n ( 1 ) A n ( 10 ) A n ( 99 ) โ = 1 + n = 10 + n = 99 + n โ A n ( m ) โ = โ m โ
+ โ
n A^n(m)โ=โmโ
+โ
n A n ( m ) โ = โ m โ
+ โ
n
๐
Small steps
Our goal is to make large numbers, so we may start throwing some of them at A in hopes of making them even bigger.
A 1000 ( 1000 ) = 2000 A 1000000 ( 1000000 ) = 2000000 \begin{aligned}
A^{1000}(1000) &= 2000 \\
A^{1000000}(1000000) &= 2000000
\end{aligned} A 1000 ( 1000 ) A 1000000 ( 1000000 ) โ = 2000 = 2000000 โ
But weโre not making much progress. For starters, we have to pass in
two big numbers - what a waste. Letโs not repeat ourselves so much by creating a new function โBโ:
B ( n ) โ = โ A n ( n ) B(n)โ=โA^n(n) B ( n ) โ = โ A n ( n )
Now we can pass large numbers into B just once - half the work (I checked!).
B ( 1000 ) = A 1000 ( 1000 ) = 1000 + 1000 = 2000 B ( 1000000 ) = 2000000 B ( 1000000000 ) = 2000000000 \begin{aligned}
B(1000) &= A^{1000}(1000) \\
&= 1000 + 1000 \\
&= 2000 \\
B(1000000) &= 2000000 \\
B(1000000000) &= 2000000000
\end{aligned} B ( 1000 ) B ( 1000000 ) B ( 1000000000 ) โ = A 1000 ( 1000 ) = 1000 + 1000 = 2000 = 2000000 = 2000000000 โ
We can see that the following property holds:
B ( n ) = A n ( n ) = n + n = 2 โ
n B(n) = A^n(n) = n + n = 2 \cdot n B ( n ) = A n ( n ) = n + n = 2 โ
n
Try as it might, โevil Aโ canโt stop our new friend โBโ from taking our numbers to great heights.
A ห ( n ) = n โ 1 B ( n ) = 2 โ
n A ห ( B ( 10 ) ) = 20 โ 1 = 19 A ห ( B ( 100 ) ) = 199 A ห ( B ( 5000 ) ) = 9999 \begin{aligned}
\check A(n) &= n - 1 \\
B(n) &= 2 \cdot n \\
\check A(B(10)) &= 20 - 1 = 19 \\
\check A(B(100)) &= 199 \\
\check A(B(5000)) &= 9999 \\
\end{aligned} A ห ( n ) B ( n ) A ห ( B ( 10 )) A ห ( B ( 100 )) A ห ( B ( 5000 )) โ = n โ 1 = 2 โ
n = 20 โ 1 = 19 = 199 = 9999 โ
But โevil Bโ can, stopping our numbers dead in their tracks.
B ห ( n ) = n 2 B ( n ) = 2 โ
n B ห ( B ( 10 ) ) = 20 2 = 10 B ห ( B ( 100 ) ) = 100 B ห ( B ( 5000 ) ) = 5000 \begin{aligned}
\check B(n) &= \frac{n}{2} \\
B(n) &= 2 \cdot n \\
\check B(B(10)) &= \frac{20}{2} = 10 \\
\check B(B(100)) &= 100 \\
\check B(B(5000)) &= 5000 \\
\end{aligned} B ห ( n ) B ( n ) B ห ( B ( 10 )) B ห ( B ( 100 )) B ห ( B ( 5000 )) โ = 2 n โ = 2 โ
n = 2 20 โ = 10 = 100 = 5000 โ
Weโll need something stronger.
๐
Slightly bigger steps
We have a function โBโ which
doubles a number.
B ( 1 ) = 2 B ( 99 ) = 198 B ( 500 ) = 1000 \begin{aligned}
B(1) &= 2 \\
B(99) &= 198 \\
B(500) &= 1000
\end{aligned} B ( 1 ) B ( 99 ) B ( 500 ) โ = 2 = 198 = 1000 โ
We can apply โBโ multiple times.
B ( B ( 1 ) ) = B ( 2 ) = 4 B ( B ( B ( 10 ) ) ) = 80 \begin{aligned}
B(B(1)) = B(2) &= 4 \\
B(B(B(10))) &= 80
\end{aligned} B ( B ( 1 )) = B ( 2 ) B ( B ( B ( 10 ))) โ = 4 = 80 โ
To shorten things, we can use our trusty friend, the superscript.
B ( B ( 1 ) ) = B 2 ( 1 ) = 4 B ( B ( B ( 10 ) ) ) = B 3 ( 10 ) = 80 \begin{alignedat}{2}
B(B(1)) &= B^2(1) &&= 4 \\
B(B(B(10))) &= B^3(10) &&= 80
\end{alignedat} B ( B ( 1 )) B ( B ( B ( 10 ))) โ = B 2 ( 1 ) = B 3 ( 10 ) โ โ = 4 = 80 โ
This pattern may be a bit harder to spot, but we can handle it by expanding things a little.
B 4 ( 5 ) = 2 โ
B 3 ( 5 ) = 2 โ
2 โ
B 2 ( 5 ) = 2 โ
2 โ
2 โ
B ( 5 ) = 2 โ
2 โ
2 โ
2 โ
5 = 2 4 โ
5 \begin{aligned}
B^4(5) &= 2 \cdot B^3(5) \\
&= 2 \cdot 2 \cdot B^2(5) \\
&= 2 \cdot 2 \cdot 2 \cdot B(5) \\
&= 2 \cdot 2 \cdot 2 \cdot 2 \cdot 5 \\
&= 2^4 \cdot 5
\end{aligned} B 4 ( 5 ) โ = 2 โ
B 3 ( 5 ) = 2 โ
2 โ
B 2 ( 5 ) = 2 โ
2 โ
2 โ
B ( 5 ) = 2 โ
2 โ
2 โ
2 โ
5 = 2 4 โ
5 โ
The following pattern emerges:
B n ( 5 ) โ = โ 2 n โ
โ
โ
5 B^n(5)โ=โ2^nโ
\cdotโ
5 B n ( 5 ) โ = โ 2 n โ
โ
โ
5 B n ( m ) โ = โ 2 n โ
โ
โ
m B^n(m)โ=โ2^nโ
\cdotโ
m B n ( m ) โ = โ 2 n โ
โ
โ
m
Just as before, weโll consolidate m and n by introducing a new function โC.โ
C ( n ) = B n ( n ) = 2 n โ
n C(n) = B^n(n) = 2^n \cdot n C ( n ) = B n ( n ) = 2 n โ
n
๐
Getting there
Our numbers are starting to grow pretty quickly:
C ( 3 ) = 2 3 โ
3 = 24 C ( 10 ) = 2 10 โ
10 = 10240 C ( 100 ) = 2 100 โ
100 = 12676506 โฆ \begin{alignedat}{2}
C(3) &= 2^3 \cdot 3 &&= 24 \\
C(10) &= 2^{10} \cdot 10 &&= 10240 \\
C(100) &= 2^{100} \cdot 100 &&= 12676506\mathellipsis
\end{alignedat} C ( 3 ) C ( 10 ) C ( 100 ) โ = 2 3 โ
3 = 2 10 โ
10 = 2 100 โ
100 โ โ = 24 = 10240 = 12676506 โฆ โ
Passing 100 to our friend โCโ produces
126765060022822940149670320537600
, which is a whopping 33 digits in length. Switch the 100 to 1000 and we get:
107150860718626732094842504906000
181056140481170553360744375038837
035105112493612249319837881569585
812759467291755314682518714528569
231404359845775746985748039345677
748242309854210746050623711418779
541821530464749835819412673987675
591655439460770629145711964776865
421676604298316526243868372056680
69376000
Coming in at 305 digits. Pretty huge - larger than
the number of particles in the universe - but still easily represented here in this article.
Additionally, our โevil Bโ from earlier is no match for us now.
B ห ( n ) = n 2 C ( n ) = 2 n โ
n B ห ( C ( 10 ) ) = 5120 B ห ( C ( 100 ) ) = 633825 โฆ (32 digits) B ห ( C ( 1000 ) ) = 535754 โฆ (304 digits) \begin{aligned}
\check B(n) &= \frac{n}{2} \\
C(n) &= 2^n \cdot n \\
\check B(C(10)) &= 5120 \\
\check B(C(100)) &= 633825\mathellipsis \text{(32 digits)} \\
\check B(C(1000)) &= 535754\mathellipsis \text{(304 digits)}\\
\end{aligned} B ห ( n ) C ( n ) B ห ( C ( 10 )) B ห ( C ( 100 )) B ห ( C ( 1000 )) โ = 2 n โ = 2 n โ
n = 5120 = 633825 โฆ (32 digits) = 535754 โฆ (304 digits) โ
Try as it might, โevil Bโ can only occasionally knock a single digit off our numbers.
A new challenger approaches, however, that can take them out using its secret weapon -
the logarithm .
C ห ( n ) = lg โก ( n ) C ( n ) = 2 n โ
n C ห ( C ( 10 ) ) = 13.321 โฆ C ห ( C ( 100 ) ) = 106.643 โฆ C ห ( C ( 1000 ) ) = 1009.965 โฆ \begin{aligned}
\check C(n) &= \lg(n) \\
C(n) &= 2^n \cdot n \\
\check C(C(10)) &= 13.321\mathellipsis \\
\check C(C(100)) &= 106.643\mathellipsis \\
\check C(C(1000)) &= 1009.965\mathellipsis \\
\end{aligned} C ห ( n ) C ( n ) C ห ( C ( 10 )) C ห ( C ( 100 )) C ห ( C ( 1000 )) โ = lg ( n ) = 2 n โ
n = 13.321 โฆ = 106.643 โฆ = 1009.965 โฆ โ
Our numbers are
barely able to escape the mighty logarithm. Weโll need something stronger.
๐
To new heights
We have a function โCโ which raises 2 to the power โnโ and multiplies it by โnโ
C ( n ) = 2 n โ
n C ( 3 ) = 2 3 โ
3 = 24 C ( 10 ) = 2 10 โ
10 = 10240 \begin{alignedat}{2}
C(n) &= 2^n \cdot n \\
C(3) &= 2^3 \cdot 3 &&= 24 \\
C(10) &= 2^{10} \cdot 10 &&= 10240 \\
\end{alignedat} C ( n ) C ( 3 ) C ( 10 ) โ = 2 n โ
n = 2 3 โ
3 = 2 10 โ
10 โ โ = 24 = 10240 โ
This function has a little sibling which does the same thing, but does not multiply by โnโ. It wonโt produce numbers quite as big, but will be a little easier for us to work with.
C ห ( n ) = 2 n C ห ( 3 ) = 8 C ห ( 10 ) = 1024 \begin{aligned}
\dot C(n) &= 2^n \\
\dot C(3) &= 8 \\
\dot C(10) &= 1024
\end{aligned} C ห ( n ) C ห ( 3 ) C ห ( 10 ) โ = 2 n = 8 = 1024 โ
We can apply โlittle Cโ multiple times.
C ห ( n ) = 2 n C ห ( C ห ( n ) ) = 2 C ห ( n ) = 2 2 n C ห ( C ห ( C ห ( n ) ) ) = 2 C ห ( C ห ( n ) ) = 2 2 C ห ( n ) = 2 2 2 n \begin{alignedat}{2}
\dot C(n) &= 2^n \\
\dot C(\dot C(n)) &= 2^{\dot C(n)} &&= 2^{2^n} \\
\dot C(\dot C(\dot C(n))) &= 2^{\dot C(\dot C(n))} \\
&= 2^{2^{\dot C(n)}} &&= 2^{2^{2^{n}}}
\end{alignedat} C ห ( n ) C ห ( C ห ( n )) C ห ( C ห ( C ห ( n ))) โ = 2 n = 2 C ห ( n ) = 2 C ห ( C ห ( n )) = 2 2 C ห ( n ) โ โ = 2 2 n = 2 2 2 n โ
Just as before, we can use our trusty friend the superscript.
C ห 5 ( n ) = 2 2 2 2 2 n \dot C^5(n) = 2^{2^{2^{2^{2^n}}}} C ห 5 ( n ) = 2 2 2 2 2 n
Repeated applications of โlittle Cโ result in these fairly alien โtowersโ of 2s. In particular:
C ห m ( n ) = 2 2 2 โ
โ
โ
2 n โ m copies of 2 \dot C^m(n) = \underbrace{2^{2^{2^{\cdot^{\cdot^{\cdot^{2^n}}}}}}}_{\text{m copies of 2}} C ห m ( n ) = m copies of 2 2 2 2 โ
โ
โ
2 n โ โ
Once again we can consolidate m and n:
D ( n ) = C ห n ( n ) = 2 2 2 โ
โ
โ
2 n โ n copies of 2 D(n) = \dot C^n(n) = \underbrace{2^{2^{2^{\cdot^{\cdot^{\cdot^{2^n}}}}}}}_{\text{n copies of 2}} D ( n ) = C ห n ( n ) = n copies of 2 2 2 2 โ
โ
โ
2 n โ โ
Just as we removed the trailing end for โCโ, weโll remove the trailing n for โDโ to simplify things.
C ( n ) = 2 n โ
n C ห ( n ) = 2 n D ( n ) = 2 2 2 โ
โ
โ
2 n โ n copies of 2 D ห ( n ) = 2 2 2 โ
โ
โ
2 โ n copies of 2 \begin{aligned}
C(n) &= 2^n \cdot n \\
\dot C(n) &= 2^n \\
D(n) &= \underbrace{2^{2^{2^{\cdot^{\cdot^{\cdot^{2^n}}}}}}}_{\text{n copies of 2}} \\
\dot D(n) &= \underbrace{2^{2^{2^{\cdot^{\cdot^{\cdot^{2}}}}}}}_{\text{n copies of 2}}
\end{aligned} C ( n ) C ห ( n ) D ( n ) D ห ( n ) โ = 2 n โ
n = 2 n = n copies of 2 2 2 2 โ
โ
โ
2 n โ โ = n copies of 2 2 2 2 โ
โ
โ
2 โ โ โ
These โtowers of exponentsโ are referred to as โ
tetrations โ and are typically represented using
Knuthโs up-arrow notation .
D ห ( 5 ) = 2 2 2 2 2 = 2 โ โ 5 \dot D(5) = 2^{2^{2^{2^2}}} = 2 \uparrow \uparrow 5 D ห ( 5 ) = 2 2 2 2 2 = 2 โโ 5
Theyโre bizarre-looking, and growโฆ
really quickly . How quickly?
D ห ( 2 ) = 2 2 = 4 D ห ( 3 ) = 2 2 2 = 16 D ห ( 4 ) = 2 2 2 2 = 65536 D ห ( 5 ) = 2 2 2 2 2 = 2 65536 \begin{alignedat}{2}
\dot D(2) &= 2^2 &&= 4 \\
\dot D(3) &= 2^{2^2} &&= 16 \\
\dot D(4) &= 2^{2^{2^2}} &&= 65536 \\
\dot D(5) &= 2^{2^{2^{2^2}}} &&= 2^{65536}
\end{alignedat} D ห ( 2 ) D ห ( 3 ) D ห ( 4 ) D ห ( 5 ) โ = 2 2 = 2 2 2 = 2 2 2 2 = 2 2 2 2 2 โ โ = 4 = 16 = 65536 = 2 65536 โ
At just 5 items in, weโre produced a number that is 19,729 digits in length. Much larger than anything weโve seen so far, but still
tangible . In fact, I can print this number at size 11 font with 1" margins in just 7 sheets of paper (about 3,000 digits per page).
a print preview showing the very long number (20035299...) with "Total: 7 pagesโ
D ห ( 6 ) = 2 2 2 2 2 2 = ??? \dot D(6) = 2^{2^{2^{2^{2^2}}}} = \text{???} D ห ( 6 ) = 2 2 2 2 2 2 = ???
What
is this number? Concretely, itโs 2 raised to the giant number we just saw. How much larger does that make it?
While we could print
D(5)
on 7 pages of paper, weโll need 7 pages of paper
just to print the number of digits in D(6)
. What if we wanted to print
D(6)
itself? Weโll need about
D(5)
pages.
More specifically, weโll need
D(5) / 3,000
pages, but
D(5)
is so massive the
/ 3,000
does absolutely nothing to it.
How about
D(7)
? Weโll need
D(5) / 3,000
pages to print its digits, and
D(6) / 3,000
pages to print the number itself. Thereโs a pattern here, but not one that translates well into physical sheets of paper. Simply put, the numberโs big.
In fact, our function generates numbers so big that โevil Cโ is quickly drowned by them.
C ห ( n ) = lg โก ( n ) C ห ( D ห ( 2 ) ) = lg โก ( 2 2 ) = 2 C ห ( D ห ( 3 ) ) = lg โก ( 2 2 2 ) = 2 2 C ห ( D ห ( 4 ) ) = lg โก ( 2 2 2 2 ) = 2 2 2 C ห ( D ห ( 5 ) ) = lg โก ( 2 2 2 2 2 ) = 2 2 2 2 C ห ( D ห ( 6 ) ) = lg โก ( 2 2 2 2 2 2 ) = 2 2 2 2 2 \begin{alignedat}{2}
\check C(n) &= \lg(n) \\
\check C(\dot D(2)) &= \lg{(2^2)} &&= 2 \\
\check C(\dot D(3)) &= \lg{(2^{2^2})} &&= 2^2 \\
\check C(\dot D(4)) &= \lg{(2^{2^{2^2}})} &&= 2^{2^2} \\
\check C(\dot D(5)) &= \lg{(2^{2^{2^{2^2}}})} &&= 2^{2^{2^2}} \\
\check C(\dot D(6)) &= \lg{(2^{2^{2^{2^{2^2}}}})} &&= 2^{2^{2^{2^2}}}
\end{alignedat} C ห ( n ) C ห ( D ห ( 2 )) C ห ( D ห ( 3 )) C ห ( D ห ( 4 )) C ห ( D ห ( 5 )) C ห ( D ห ( 6 )) โ = lg ( n ) = lg ( 2 2 ) = lg ( 2 2 2 ) = lg ( 2 2 2 2 ) = lg ( 2 2 2 2 2 ) = lg ( 2 2 2 2 2 2 ) โ โ = 2 = 2 2 = 2 2 2 = 2 2 2 2 = 2 2 2 2 2 โ
Try as it might, โevil Cโ can only knock off a single item from our ever-growing tower of exponents.
A tower of exponents is a real force to be reckoned with.
๐
But not big enough
We have a function โDโ which generates a tower of 2s with a height of โn.โ
D ห ( n ) = 2 2 2 โ
โ
โ
2 โ n copies of 2 \dot D(n) = \underbrace{2^{2^{2^{\cdot^{\cdot^{\cdot^{2}}}}}}}_{\text{n copies of 2}} D ห ( n ) = n copies of 2 2 2 2 โ
โ
โ
2 โ โ
We can apply this function to itself.
D ห ( D ห ( n ) ) = D ห ( 2 2 2 โ
โ
โ
2 โ n copies of 2 ) = 2 2 2 โ
โ
โ
2 โ ( 2 2 2 โ
โ
โ
2 โ n copies of 2 ) copies of 2 \begin{aligned}
\dot D(\dot D(n)) &= \dot D(\underbrace{2^{2^{2^{\cdot^{\cdot^{\cdot^{2}}}}}}}_{\text{n copies of 2}}) \\
&= \underbrace{2^{2^{2^{\cdot^{\cdot^{\cdot^{2}}}}}}}_{(\underbrace{2^{2^{2^{\cdot^{\cdot^{\cdot^{2}}}}}}}_{\text{n copies of 2}})\text{ copies of 2}}
\end{aligned} D ห ( D ห ( n )) โ = D ห ( n copies of 2 2 2 2 โ
โ
โ
2 โ โ ) = ( n copies of 2 2 2 2 โ
โ
โ
2 โ โ ) copies of 2 2 2 2 โ
โ
โ
2 โ โ โ
In the previous section, we saw how
D(n-1)
dictated the
number of digits for
D(n)
. Well,
D(D(n))
grows not on the level of
exponents , but on the level of the
number of exponents in the tower .
While D(6)
was practically impossible to imagine, D(D(6))
is pure nightmare fuel. Letโs continue.
Just as earlier, we can use a superscript to simplify things:
D ห m ( n ) = 2 2 2 โ
โ
โ
2 โ ( 2 2 2 โ
โ
โ
2 โ ( โ
โ
โ
) copies of 2 ) copies of 2 } m times \left.
\dot D^m(n) = \underbrace{2^{2^{2^{\cdot^{\cdot^{\cdot^{2}}}}}}}_{(\underbrace{2^{2^{2^{\cdot^{\cdot^{\cdot^{2}}}}}}}_{(\cdot^{\cdot^{\cdot}}) \text{ copies of 2}})\text{ copies of 2}}
\right\} \text{m times} D ห m ( n ) = ( ( โ
โ
โ
) copies of 2 2 2 2 โ
โ
โ
2 โ โ ) copies of 2 2 2 2 โ
โ
โ
2 โ โ โญ โฌ โซ โ m times
And we can consolidate m and n like so:
E ( n ) = D ห n ( n ) = 2 2 2 โ
โ
โ
2 โ ( 2 2 2 โ
โ
โ
2 โ ( โ
โ
โ
) copies of 2 ) copies of 2 } n times \begin{aligned}
E(n) &= \dot D^n(n) \\
&= \left.
\underbrace{2^{2^{2^{\cdot^{\cdot^{\cdot^{2}}}}}}}_{(\underbrace{2^{2^{2^{\cdot^{\cdot^{\cdot^{2}}}}}}}_{(\cdot^{\cdot^{\cdot}}) \text{ copies of 2}})\text{ copies of 2}}
\right\} \text{n times}
\end{aligned} E ( n ) โ = D ห n ( n ) = ( ( โ
โ
โ
) copies of 2 2 2 2 โ
โ
โ
2 โ โ ) copies of 2 2 2 2 โ
โ
โ
2 โ โ โญ โฌ โซ โ n times โ
These towers-of-towers can be hard to read (and harder to write), so we can simplify things a bit using
our previous up-arrow notation .
D ห ( n ) = 2 โ โ n D ห ( D ห ( n ) ) = 2 โ โ ( 2 โ โ n ) D ห ( D ห ( D ห ( n ) ) ) = 2 โ โ ( 2 โ โ ( 2 โ โ n ) ) D ห m ( n ) = D ห ( D ห ( โฏ D ห ( n ) ) ) โ m copies of D ห = 2 โ โ ( โฏ ( 2 โ โ n ) ) โ m copies of 2 \begin{aligned}
\dot D(n) &= 2 \uparrow \uparrow n \\
\dot D(\dot D(n)) &= 2 \uparrow \uparrow (2 \uparrow \uparrow n) \\
\dot D(\dot D(\dot D(n))) &= 2 \uparrow \uparrow (2 \uparrow \uparrow (2 \uparrow \uparrow n)) \\
\dot D^m(n) &= \underbrace{\dot D(\dot D( \cdots \dot D(n)))}_{\text{m copies of } \dot D} \\
&= \underbrace{2 \uparrow \uparrow (\cdots (2 \uparrow \uparrow n))}_{\text{m copies of 2}}
\end{aligned} D ห ( n ) D ห ( D ห ( n )) D ห ( D ห ( D ห ( n ))) D ห m ( n ) โ = 2 โโ n = 2 โโ ( 2 โโ n ) = 2 โโ ( 2 โโ ( 2 โโ n )) = m copies of D ห D ห ( D ห ( โฏ D ห ( n ))) โ โ = m copies of 2 2 โโ ( โฏ ( 2 โโ n )) โ โ โ
(and consolidate m and n):
E ( n ) = D ห n ( n ) = 2 โ โ ( 2 โ โ ( โฏ ( 2 โ โ n ) ) โ n copies of 2 \begin{aligned}
E(n) &= \dot D^n(n) \\
&= \underbrace{2 \uparrow \uparrow (2 \uparrow \uparrow (\cdots (2 \uparrow \uparrow n))}_{\text{n copies of 2}}
\end{aligned} E ( n ) โ = D ห n ( n ) = n copies of 2 2 โโ ( 2 โโ ( โฏ ( 2 โโ n )) โ โ โ
Lastly, weโll want to get rid of that pesky โnโ at the end and create a โlittle Eโ just as we did for โCโ and โDโ.
D ( n ) = 2 2 2 โ
โ
โ
2 n โ n copies of 2 D ห ( n ) = 2 2 2 โ
โ
โ
2 โ n copies of 2 E ( n ) = 2 โ โ ( 2 โ โ ( โฏ ( 2 โ โ n ) ) โ n copies of 2 E ห ( n ) = 2 โ โ ( 2 โ โ ( โฏ ( 2 โ โ 2 ) ) โ n copies of 2 \begin{aligned}
D(n) &= \underbrace{2^{2^{2^{\cdot^{\cdot^{\cdot^{2^n}}}}}}}_{\text{n copies of 2}} \\
\dot D(n) &= \underbrace{2^{2^{2^{\cdot^{\cdot^{\cdot^{2}}}}}}}_{\text{n copies of 2}} \\
E(n) &= \underbrace{2 \uparrow \uparrow (2 \uparrow \uparrow (\cdots (2 \uparrow \uparrow n))}_{\text{n copies of 2}} \\
\dot E(n) &= \underbrace{2 \uparrow \uparrow (2 \uparrow \uparrow (\cdots (2 \uparrow \uparrow 2))}_{\text{n copies of 2}}
\end{aligned} D ( n ) D ห ( n ) E ( n ) E ห ( n ) โ = n copies of 2 2 2 2 โ
โ
โ
2 n โ โ = n copies of 2 2 2 2 โ
โ
โ
2 โ โ = n copies of 2 2 โโ ( 2 โโ ( โฏ ( 2 โโ n )) โ โ = n copies of 2 2 โโ ( 2 โโ ( โฏ ( 2 โโ 2 )) โ โ โ
Conveniently, mathematicians have an elegant way to represent โapply double-up-arrow n times,โ and all it takes is adding a third arrow.
E ห ( n ) = 2 โ โ ( 2 โ โ ( โฏ ( 2 โ โ 2 ) ) โ n copies of 2 E ห ( n ) = 2 โ โ โ n \begin{aligned}
\dot E(n) &= \underbrace{2 \uparrow \uparrow (2 \uparrow \uparrow (\cdots (2 \uparrow \uparrow 2))}_{\text{n copies of 2}} \\
\dot E(n) &= 2 \uparrow \uparrow \uparrow n
\end{aligned} E ห ( n ) E ห ( n ) โ = n copies of 2 2 โโ ( 2 โโ ( โฏ ( 2 โโ 2 )) โ โ = 2 โโโ n โ
๐
Arrows, arrows, arrows
In fact, if we repeat the process we used to generate โBโ through โEโ:
E m ( n ) = E ( E ( โฏ ( E ( n ) ) โ m times E n ( n ) = E ( E ( โฏ ( E ( n ) ) โ n times F ( n ) = E n ( n ) G ( n ) = F n ( n ) H ( n ) = G n ( n ) โฆ \begin{aligned}
E^m(n) &= \underbrace{E(E(\cdots(E(n))}_{\text{m times}} \\
E^n(n) &= \underbrace{E(E(\cdots(E(n))}_{\text{n times}} \\
F(n) &= E^n(n) \\
G(n) &= F^n(n) \\
H(n) &= G^n(n) \\
\dots
\end{aligned} E m ( n ) E n ( n ) F ( n ) G ( n ) H ( n ) โฆ โ = m times E ( E ( โฏ ( E ( n )) โ โ = n times E ( E ( โฏ ( E ( n )) โ โ = E n ( n ) = F n ( n ) = G n ( n ) โ
All weโre really doing is
adding more arrows .
E ( n ) = 2 โ โ โ n F ( n ) = 2 โ โ โ โ n G ( n ) = 2 โ โ โ โ โ n H ( n ) = 2 โ โ โ โ โ โ n โฆ \begin{aligned}
E(n) &= 2 \uparrow \uparrow \uparrow n \\
F(n) &= 2 \uparrow \uparrow \uparrow \uparrow n \\
G(n) &= 2 \uparrow \uparrow \uparrow \uparrow \uparrow n \\
H(n) &= 2 \uparrow \uparrow \uparrow \uparrow \uparrow \uparrow n \\
\dots
\end{aligned} E ( n ) F ( n ) G ( n ) H ( n ) โฆ โ = 2 โโโ n = 2 โโโโ n = 2 โโโโโ n = 2 โโโโโโ n โ
Eventually the arrows themselves will become unwieldy:
Z ( n ) = 2 โ โ โฏ โ n โ 25 arrows Z(n) = \underbrace{2 \uparrow \uparrow \cdots \uparrow n}_\text{25 arrows} Z ( n ) = 25 arrows 2 โโ โฏ โ n โ โ
Worry not, for we can provide a superscript
to the arrow itself. (Keep in mind that our numbers became
incomprehensibly large 23 arrows ago.)
Z ( n ) = 2 โ โ โฏ โ n โ 25 arrows Z ( n ) = 2 โ 25 n \begin{aligned}
Z(n) &= \underbrace{2 \uparrow \uparrow \cdots \uparrow n}_\text{25 arrows} \\
Z(n) &= 2 \uparrow^{25} n
\end{aligned} Z ( n ) Z ( n ) โ = 25 arrows 2 โโ โฏ โ n โ โ = 2 โ 25 n โ
So, what if we wanted to continue growing the number of arrows?
Iโll leave that to you, dear reader, for I am exhausted.
Thanks for reading :) If you enjoyed this article, youโll probably love
Grahamโs Number and
TREE(3) .