by dedalus on 12/23/23, 8:20 PM with 51 comments
by tromp on 12/26/23, 8:48 AM
P([0,t]) = t
P([s,t]) = [P(s),t] but with all instances of t replaced by [P(s),t]
For example, starting from [[0,0],0], we have the sequence of predecessor trees [[0,0],0]
[[0,0],[0,0]]
[0,[0,[0,0]]]
[0,[0,0]]
[0,0]
0
This sequence grows unbelievably faster than Goodstein's, and even faster than the infamous TREE() function [1], while having an almost trivial definition. The number of predecessors to reach 0 is sequence A367433 in the Online Encyclopedia of Integer Sequences [2].[1] https://en.wikipedia.org/wiki/Kruskal%27s_tree_theorem#TREE_...
by Tazerenix on 12/26/23, 8:42 AM
That is, there are models of Peano arithmetic which contain all of the natural numbers we know and love, and some other ones on top of that and there are some Goodstein sequences using those extra "non-standard" natural numbers which do not terminate at zero.
https://en.wikipedia.org/wiki/Non-standard_model_of_arithmet...
by DeathArrow on 12/26/23, 8:08 AM
It seems math is never perfect but always perfectible. A perfect system wouldn't have paradoxes. One common example is Russel paradox.
We arrive at different conclusions by choosing a different set of axioms and constructing everything else based on that set. We can have parallels that intersect and parallels that don't.
by ConnorMooneyhan on 12/26/23, 4:40 PM
by cubefox on 12/26/23, 10:15 AM