pith. machine review for the scientific record. sign in
theorem proved term proof high

alpha_seed_lt

show as:
view Lean formalization →

The theorem establishes that the geometric seed alpha_seed, defined as 4π·11, satisfies alpha_seed < 138.230092. Researchers deriving certified interval bounds on the inverse fine-structure constant cite this result to tighten upper estimates inside the alphaInv pipeline. The proof unfolds the definition via simp and closes the inequality with the standard pi bound together with linear arithmetic.

claimLet $a := 4π·11$. Then $a < 138.230092$.

background

In this module the geometric seed alpha_seed is introduced as the baseline spherical closure cost over 11-edge interaction paths, given explicitly by the definition 4 * Real.pi * 11. The surrounding module supplies rigorous interval bounds on α⁻¹ derived from the ledger structure and the Recognition Composition Law. Upstream results include the core definition in Constants.Alpha together with variants in AlphaHigherOrder and AlphaPrecision, plus the gap weight f_gap that appears as a logarithmic correction from the eight-tick projection.

proof idea

The proof is a one-line wrapper that applies simp only [alpha_seed] to unfold the definition, introduces the known inequality Real.pi_lt_d6, and closes the goal with linarith.

why it matters in Recognition Science

The bound is invoked by the downstream theorem alphaInv_lt that establishes alphaInv < 137.039. It therefore contributes to the certified interval (137.030, 137.039) for α⁻¹ that the framework predicts from the J-uniqueness and phi-ladder constructions. The result closes one numerical step in the pipeline that converts the eight-tick octave and D = 3 into observable constants.

scope and limits

formal statement (Lean)

  26theorem alpha_seed_lt : alpha_seed < (138.230092 : ℝ) := by

proof body

Term-mode proof.

  27  simp only [alpha_seed]
  28  have h := Real.pi_lt_d6
  29  linarith
  30
  31/-! ## f_gap bounds -/
  32

used by (1)

From the project-wide theorem graph. These declarations reference this one in their body.

depends on (6)

Lean names referenced from this declaration's body.