Fast Growing Hierarchy Calculator May 2026
Would you like a runnable Python prototype for ordinals < ε0 (CLI) as the next step?
To create a calculator for the Fast-Growing Hierarchy (FGH), you must implement a recursive system based on an ordinal-indexed family of functions
. These functions are defined by how they build upon one another:
is simple addition, and each subsequent level is the repeated iteration of the level before it. 1. Define the base case The starting point for the hierarchy is , which is the successor function. Formula: fast growing hierarchy calculator
Purpose: This provides the fundamental unit of growth from which all larger functions are built. 2. Implement successor recursion For any finite successor ordinal , the function is defined by applying the previous function times to the input Formula: Example: Calculation Logic: If you are calculating , you must calculate 3. Handle limit ordinals When the index is a limit ordinal (like
), the hierarchy uses a "fundamental sequence" to choose a specific function based on the input Formula: Standard Sequence: For the first limit ordinal , the sequence is usually 4. Code Implementation (Python Example)
Because these numbers grow too large for standard data types, a practical calculator often outputs a symbolic representation or uses libraries like ExpantaNum.js for extremely large values. Below is a conceptual recursive implementation: Would you like a runnable Python prototype for
You might ask: "Is this just math masturbation?" Surprisingly, no. FGH calculators serve legitimate purposes:
Direct naive recursion quickly explodes. Use these techniques:
Symbolic/descriptor mode (recommended for larger inputs): You might ask: "Is this just math masturbation
Bound estimation:
Safeguards:
To build a calculator, we must first define the recursive rules of the FGH. The hierarchy is defined by a transfinite sequence of functions $f_\alpha(n)$, where $\alpha$ is an ordinal number.