I made the horrible mistake of hosting a Scott Aaronson style "large numbers" competition. (I used a character limit to prevent it from getting too crazy.)
I was able to knock out most of the contenders myself, but there are two left for which I'm uncertain, and I could use some help. (Actually three, but I won't worry about the third one here.)
Firstly a notation for function composition: define Comp(f, input, repetitions) to mean applying function "f" to a number "input", then applying f to the result, and repeat until f has been applied this way repetition times. For example, Comp(f, 2, 3) = f(f(f(2))).
The two contenders (simplified a bit from how they were entered) are:
- Rayo(Comp(BB, G64, G64 + 2))^2
- Comp(TREE, 9, TREE(G64))^2
Yes these are both salad numbers. (The entrants were not very sophisticated.) I'd like to determine which is larger.
I'm aware that proving statements about such large numbers is extremely difficult (especially when they include uncomputable functions like the first one does), so I'd accept a strong heuristic argument instead.
I'm inclined to think that the first is larger, since Rayo() and BB() both grow faster than any computable function like TREE(). But TREE() starts out larger for small values, and we don't know where the other functions finally cross it, so this isn't conclusive.