Skip to content

Commit 144b257

Browse files
committed
New Post
Googology.
1 parent abe9843 commit 144b257

3 files changed

Lines changed: 170 additions & 11 deletions

File tree

posts/entries/googology.md

Lines changed: 150 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,150 @@
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+
```

posts/entries/random.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ While reading the Wikipedia article about metric spaces just now, it was talking
1010

1111
These are not really on the topic, what I want to say today is about the essential part of a linear transformation, and I figured out the proof and purpose just after looking over it in terms of domains and codomains. What I understand here is that
1212

13-
$$
14-
A x = A(\proj{\ran A^*}x + ( x - \proj{\ran A^*}x ) ) = A \proj{\ran A^*} x
15-
$$
13+
\[
14+
Ax = A\left(\proj{\ran A^* } x + \left(x - \proj{\ran A^* } x \right)\right) = A\left(\proj{\ran A^* } x\right)
15+
\]
1616

17-
just like doing an orthogonal decomposition on $x$, that
17+
This uses orthogonal decomposition of $x$, where:
1818

19-
$$
20-
x - \proj{\ran A^*}x \in (\ran A^*)^{\perp} = \ker A
21-
$$
19+
\[
20+
x - \proj{\ran A^* } x \in \left(\ran A^* \right)^\perp = \ker A
21+
\]
2222

2323
so that
2424

posts/metadata/entries.json

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"title": "First Post",
44
"date": "2025-03-30",
55
"author": "R",
6-
"location": "New York",
6+
"location": "New York, NY",
77
"tags": ["cs", "life"],
88
"slug": "first"
99
}
@@ -12,7 +12,7 @@
1212
"title": "Random stuff in linear algebra",
1313
"date": "2025-04-02",
1414
"author": "R",
15-
"location": "New York",
15+
"location": "New York, NY",
1616
"tags": ["math"],
1717
"slug": "random"
1818
}
@@ -21,7 +21,7 @@
2121
"title": "Seminar - Opensource",
2222
"date": "2025-04-04",
2323
"author": "R",
24-
"location": "New York",
24+
"location": "New York, NY",
2525
"tags": ["notes", "cs"],
2626
"slug": "seminar-opensource"
2727
}
@@ -30,8 +30,17 @@
3030
"title": "Seminar - Insights from the Financial Industry",
3131
"date": "2025-04-30",
3232
"author": "R",
33-
"location": "New York",
33+
"location": "New York, NY",
3434
"tags": ["notes", "finance"],
3535
"slug": "seminar-finance"
3636
}
37+
,
38+
{
39+
"title": "A Glimpse into Googology",
40+
"date": "2024-02-14",
41+
"author": "R",
42+
"location": "St. Catharines, ON",
43+
"tags": ["math"],
44+
"slug": "googology"
45+
}
3746
]

0 commit comments

Comments
 (0)