|
| 1 | +--- |
| 2 | +title: A Glimpse into Googology |
| 3 | +date: 2024-02-14 |
| 4 | +tags: [math] |
| 5 | +author: R |
| 6 | +location: St. Catharines, ON, Canada |
| 7 | +--- |
| 8 | + |
| 9 | +This is a problem really gets me wonder 'What is Googology?' during the summer, and I ended up reading about it. When I wrote this I was in my last days of high school, coming across a instagram reel gives the question of comparing $2^{100!}$ and $(2^{100})!$ (the reel was just making fun about math), we ended up arguing about this and come up with different methods to proof our ideas. |
| 10 | + |
| 11 | +## Numerical Method |
| 12 | + |
| 13 | +### Stirling's Approximation |
| 14 | + |
| 15 | +According to Stirling's Approximation[^1]: |
| 16 | + |
| 17 | +$$ |
| 18 | +n! \sim \sqrt{2\pi n} \left(\frac{n}{e}\right)^n |
| 19 | +$$ |
| 20 | + |
| 21 | +[^1]: "\(\sim\)" here means that the two quantities are asymptotic, i.e., the ratio between these two terms tends to 1 as \(n \to \infty\). |
| 22 | + |
| 23 | +So: |
| 24 | + |
| 25 | +### For \(2^{100!}\) |
| 26 | + |
| 27 | +$$ |
| 28 | +100! \sim \sqrt{2\pi \cdot 100} \left(\frac{100}{e}\right)^{100} |
| 29 | +\approx 9.3 \times 10^{57} |
| 30 | +$$ |
| 31 | + |
| 32 | +$$ |
| 33 | +2^{100!} \approx 2^{9.3 \times 10^{57}} |
| 34 | +$$ |
| 35 | + |
| 36 | +### For \(\left(2^{100}\right)!\) |
| 37 | + |
| 38 | +$$ |
| 39 | +2^{100}! \sim \sqrt{\pi \cdot 2^{101}} \left(\frac{2^{100}}{e}\right)^{2^{100}} \approx 2.82 \times 10^{15} \cdot \left(4.66 \times 10^{29}\right)^{1.26 \times 10^{30}} |
| 40 | +$$ |
| 41 | + |
| 42 | +Both numbers are in the form of tetration (operation based on iterated exponentiation), so it's difficult to compare them directly by hand. |
| 43 | + |
| 44 | +## Logarithm Approach |
| 45 | + |
| 46 | +### \(\log_2(2^{100!})\) |
| 47 | +$$ |
| 48 | +\log_2(2^{100!}) = 100! |
| 49 | +$$ |
| 50 | + |
| 51 | +Using Stirling again: |
| 52 | + |
| 53 | +$$ |
| 54 | +100! \sim \sqrt{2\pi \cdot 100} \left(\frac{100}{e}\right)^{100} > 25 \cdot \left(\frac{100}{e}\right)^{100} = 25 \cdot \frac{100^{100}}{e^{100}} |
| 55 | +$$ |
| 56 | + |
| 57 | +Which approximates to: |
| 58 | + |
| 59 | +\[ > 9.3 \times 10^{57} \] |
| 60 | + |
| 61 | +### \(\log_2((2^{100})!)\) (code attached in [Appendix](#appendix)) |
| 62 | +Using Stirling again: |
| 63 | + |
| 64 | +$$ |
| 65 | +(2^{100})! \sim \sqrt{2\pi \cdot 2^{100}} \left(\frac{2^{100}}{e}\right)^{2^{100}} |
| 66 | +$$ |
| 67 | + |
| 68 | +Take log base 2: |
| 69 | + |
| 70 | +$$ |
| 71 | +\log_2((2^{100})!) \sim \log_2 \sqrt{2\pi \cdot 2^{100}} + 2^{100} \log_2 \left(\frac{2^{100}}{e}\right) |
| 72 | +$$ |
| 73 | + |
| 74 | +Breaking this down: |
| 75 | + |
| 76 | +$$ |
| 77 | += \frac{1}{2}(\log_2 2\pi + 100) + 2^{100}(100 - \log_2 e) |
| 78 | +\approx 1.25 \times 10^{32} |
| 79 | +$$ |
| 80 | + |
| 81 | +### Conclusion |
| 82 | + |
| 83 | +Since: |
| 84 | + |
| 85 | +$$ |
| 86 | +9.3 \times 10^{57} > 1.25 \times 10^{32} |
| 87 | +$$ |
| 88 | + |
| 89 | +We conclude: |
| 90 | + |
| 91 | +$$ |
| 92 | +2^{100!} > (2^{100})! |
| 93 | +$$ |
| 94 | + |
| 95 | +## Michael’s Method (Xiao 2024) |
| 96 | + |
| 97 | +Ngl, I think Michael make the best argument out of us all... |
| 98 | + |
| 99 | +For \(a \in \mathbb{Z}^+\), \(a > 6\), we know: |
| 100 | + |
| 101 | +\[ |
| 102 | +\begin{align*} |
| 103 | + a! &> a \cdot 2^a, \\ |
| 104 | + 2^{a!} &> 2^{a \cdot 2^a}, \\ |
| 105 | + &> (2^a)^{2^a}, \\ |
| 106 | + &= \underbrace{2^a \cdot 2^a \cdot \dots \cdot 2^a}_{2^a \text{ terms}}. |
| 107 | +\end{align*} |
| 108 | +\] |
| 109 | + |
| 110 | +Then there is: |
| 111 | + |
| 112 | +$$ |
| 113 | +(2^a)! = \underbrace{2^a \cdot (2^a - 1) \cdot \dots \cdot 1}_{2^a \text{ terms}} |
| 114 | +$$ |
| 115 | + |
| 116 | +Clearly: |
| 117 | + |
| 118 | +$$ |
| 119 | +2^{a!} > 2^{a \cdot 2^a} > (2^a)! |
| 120 | +$$ |
| 121 | + |
| 122 | +## Alex’s Method (Li and Cheung 2024) |
| 123 | + |
| 124 | +$$ |
| 125 | +100! \sim \sqrt{2\pi \cdot 100} \left(\frac{100}{e}\right)^{100} \sim 100^{100} |
| 126 | +$$ |
| 127 | + |
| 128 | +And: |
| 129 | + |
| 130 | +$$ |
| 131 | +(2^{100})! \sim \sqrt{2\pi \cdot 2^{100}} \left(\frac{2^{100}}{e}\right)^{2^{100}} |
| 132 | +$$ |
| 133 | + |
| 134 | +Comparing growth rates, it's evident: |
| 135 | + |
| 136 | +$$ |
| 137 | +2^{100!} > (2^{100})! |
| 138 | +$$ |
| 139 | + |
| 140 | + |
| 141 | + |
| 142 | +## Appendix |
| 143 | + |
| 144 | +```python |
| 145 | +from sympy import pi, log, E |
| 146 | + |
| 147 | +expression = (1/2) * (log(2*pi, 2) + 100) + 2**100 * (100 - log(E, 2)) |
| 148 | +evaluation = expression.evalf() |
| 149 | +print(evaluation) |
| 150 | +``` |
0 commit comments