Fast Growing - Hierarchy Calculator !!top!!

Beyond Infinity: The Quest for a Fast-Growing Hierarchy Calculator

Part 4: Implementation Challenges (And Why Most “Calculators” Are Fakes)

Search online for “FGH calculator,” and you’ll find toy scripts that handle ( f_\alpha(n) ) for ( \alpha < \omega^2 ) and ( n < 5 ). A full-featured one is a beast.

Features (of a good calculator)

2. Choices that matter for a calculator

1. Googology (The study of large numbers)

Communities like the Googology Wiki use FGH calculators to verify the growth rates of new functions. If you invent a function G(n), you feed it into an FGH calculator to see if it matches ( f_ω^2(n) ) or ( f_Γ_0(n) ). fast growing hierarchy calculator

1. Ordinal Input Modes

4. Competitive Code Golf

Extreme coders compete to write the shortest program that approximates large FGH values using the fewest bytes. Beyond Infinity: The Quest for a Fast-Growing Hierarchy


7. Implementation outline

function eval(ordinal α, int n, limits):
  if α == 0: return n+1
  if α is successor β+1:
    return iterate(eval(β, ·), n, n, limits)
  if α is limit:
    λn = fundamental_sequence(α, n)
    return eval(λn, n, limits)