Encyclopedia Constants Constants Alpha Exponential Form Log Alpha Inv Seed Ratio
ARTICLE 4 claims 3 theorems 1 open
Constants Alpha Exponential Form Log Alpha Inv Seed Ratio
A single equation in a machine-checked library relates the inverse fine-structure constant to its seed, and the honest gap is that the equation itself is chosen, not forced.
The log ratio statement
The inverse fine-structure constant α⁻¹ is a measured quantity, approximately 137.036, that sets the strength of electromagnetic interactions. In the Recognition Science framework, a machine-checked library of formal theorems contains a statement about how α⁻¹ relates to a seed value. The declaration log_alphaInv_seed_ratio proves that the natural logarithm of the ratio α⁻¹/α_seed equals −f_gap/α_seed, where α_seed = 4π¹¹ and f_gap = w₈·ln(φ). In plain words, the logarithm of the coupling ratio is linear in the gap parameter f_gap, with a slope of −1/α_seed.
This log-linear relation is the hallmark of an exponential form. The library proves that α⁻¹ = α_seed · exp(−f_gap/α_seed), and that this expression is positive. It also proves a differential equation: the derivative of α⁻¹ with respect to f_gap is −α⁻¹/α_seed, meaning the relative rate of change is constant. This is analogous to the renormalization-group equation for a running coupling in conventional physics, where α_seed plays the role of a scale. The factorial coefficients in the Taylor expansion of the exponential match those from the framework's cost function J(x) = cosh(ln x) − 1, which is itself a proved unique solution under five plain conditions.
What the declaration does not claim is the important part. The integer 44 = 4·11 is forced combinatorially, but its identification as the seed coupling α_seed is not derived. The exponential form itself is a definition, not a theorem forced from first principles. The library explicitly states that alternatives like α_seed/(1 + f_gap/α_seed) are not ruled out. The uniqueness question, whether the constant logarithmic derivative is structurally required, remains open. The physical reason why the log derivative should be constant is a bridge claim between the formalism and physics, not a proved result.
In the framework's own terms, this is an honest boundary. The library proves the structural properties of the exponential form, but it does not prove that this form is the only possible one. The exact value of α⁻¹(0) = 137.035999 remains a boundary datum, closed by a no-go result. The log ratio statement is a precise, useful fact about a chosen form, and the framework's contribution is to make the choice explicit and to prove what follows from it, not to pretend the choice was forced.
THEOREM log_alphaInv_seed_ratio · IndisputableMonolith/Constants/AlphaExponentialForm.lean
/-- The log of the ratio alphaInv/alpha_seed equals -f_gap/alpha_seed. -/
theorem log_alphaInv_seed_ratio :
Real.log (alphaInv / alpha_seed) = -(f_gap / alpha_seed) := by
rw [alphaInv_seed_ratio]
exact Real.log_exp _
THEOREM alphaInv_def · alphaInv_positive · IndisputableMonolith/Constants/AlphaExponentialForm.lean
/-- The alphaInv formula unfolds to the exponential expression. -/
theorem alphaInv_def : alphaInv = alpha_seed * Real.exp (-(f_gap / alpha_seed)) := rfl
/-- The exponential formula produces a positive value. -/
theorem alphaInv_positive : 0 < alphaInv := by
unfold alphaInv
exact mul_pos alpha_seed_positive (Real.exp_pos _)
THEOREM deriv_alphaInv_of_gap · IndisputableMonolith/Constants/AlphaExponentialForm.lean
/-- The derivative of alphaInv with respect to f_gap. -/
theorem deriv_alphaInv_of_gap (g : ℝ) :
deriv alphaInv_of_gap g = -(alphaInv_of_gap g / alpha_seed) := by
unfold alphaInv_of_gap
-- h1: derivative of g → -(g/alpha_seed) is -(1/alpha_seed)
have h_id : HasDerivAt (fun g : ℝ => g) 1 g := hasDerivAt_id g
have h_div : HasDerivAt (fun g : ℝ => g / alpha_seed) (1 / alpha_seed) g :=
h_id.div_const alpha_seed
have h1 : HasDerivAt (fun g : ℝ => -(g / alpha_seed)) (-(1 / alpha_seed)) g :=
h_div.neg
-- h2: derivative of exp(-(g/alpha_seed))
have h2 : HasDerivAt (fun g : ℝ => Real.exp (-(g / alpha_seed)))
(Real.exp (-(g / alpha_seed)) * (-(1 / alpha_seed))) g :=
(Real.hasDerivAt_exp _).comp g h1
-- h3: scale by alpha_seed
have h3 : HasDerivAt (fun g : ℝ => alpha_seed * Real.exp (-(g / alpha_seed)))
(alpha_seed * (Real.exp (-(g / alpha_seed)) * (-(1 / alpha_seed)))) g :=
h2.const_mul alpha_seed
-- Simplify the derivative expression
have heq : alpha_seed * (Real.exp (-(g / alpha_seed)) * (-(1 / alpha_seed)))
= -(alpha_seed * Real.exp (-(g / alpha_seed)) / alpha_seed) := by
field_simp
rw [← heq]
exact h3.deriv
What this page does not claim
The exponential form is uniquely forced by Recognition Science structure. The exact value of α⁻¹(0) = 137.035999 is derived from first principles. The physical reason for the constant log derivative is proved.
Verify this page
Every tagged claim above names its theorem. To check one yourself rather than trust this page, elaborate the source module with Lean 4 and audit its axiom basis:
$ lake env lean IndisputableMonolith/Constants/AlphaExponentialForm.lean
expected axiom basis: [propext, Classical.choice, Quot.sound] (the Lean kernel's standard three; no RS-specific axioms)
A page whose claims cannot be reproduced this way does not ship. In production, every anchor links to the exact declaration in the public source release, and this block carries the build receipt for the page itself.
Derived articles
This page is generated by a question-recursion engine: the questions its answers raise become the next pages. The current agenda, with open targets marked red:
- What structural principle, if any, forces the constant logarithmic derivative that selects the exponential form?
- How does the seed identification 4π¹¹ relate to the cycle-rank 5 or quadratic π² alternatives?
- What empirical check would distinguish the exponential form from the rational alternatives the library names?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM log_alphaInv_seed_ratio · IndisputableMonolith/Constants/AlphaExponentialForm.lean
/-- The log of the ratio alphaInv/alpha_seed equals -f_gap/alpha_seed. -/ theorem log_alphaInv_seed_ratio : Real.log (alphaInv / alpha_seed) = -(f_gap / alpha_seed) := by rw [alphaInv_seed_ratio] exact Real.log_exp _The declaration log_alphaInv_seed_ratio proves that the natural logarithm of the ratio α⁻¹/α_seed equals −f_gap/α_seed. log_alphaInv_seed_ratio · IndisputableMonolith/Constants/AlphaExponentialForm.leanTHEOREM alphaInv_def · alphaInv_positive · IndisputableMonolith/Constants/AlphaExponentialForm.lean
/-- The alphaInv formula unfolds to the exponential expression. -/ theorem alphaInv_def : alphaInv = alpha_seed * Real.exp (-(f_gap / alpha_seed)) := rfl/-- The exponential formula produces a positive value. -/ theorem alphaInv_positive : 0 < alphaInv := by unfold alphaInv exact mul_pos alpha_seed_positive (Real.exp_pos _)The library proves that α⁻¹ = α_seed · exp(−f_gap/α_seed), and that this expression is positive. alphaInv_def · alphaInv_positive · IndisputableMonolith/Constants/AlphaExponentialForm.leanTHEOREM deriv_alphaInv_of_gap · IndisputableMonolith/Constants/AlphaExponentialForm.lean
/-- The derivative of alphaInv with respect to f_gap. -/ theorem deriv_alphaInv_of_gap (g : ℝ) : deriv alphaInv_of_gap g = -(alphaInv_of_gap g / alpha_seed) := by unfold alphaInv_of_gap -- h1: derivative of g → -(g/alpha_seed) is -(1/alpha_seed) have h_id : HasDerivAt (fun g : ℝ => g) 1 g := hasDerivAt_id g have h_div : HasDerivAt (fun g : ℝ => g / alpha_seed) (1 / alpha_seed) g := h_id.div_const alpha_seed have h1 : HasDerivAt (fun g : ℝ => -(g / alpha_seed)) (-(1 / alpha_seed)) g := h_div.neg -- h2: derivative of exp(-(g/alpha_seed)) have h2 : HasDerivAt (fun g : ℝ => Real.exp (-(g / alpha_seed))) (Real.exp (-(g / alpha_seed)) * (-(1 / alpha_seed))) g := (Real.hasDerivAt_exp _).comp g h1 -- h3: scale by alpha_seed have h3 : HasDerivAt (fun g : ℝ => alpha_seed * Real.exp (-(g / alpha_seed))) (alpha_seed * (Real.exp (-(g / alpha_seed)) * (-(1 / alpha_seed)))) g := h2.const_mul alpha_seed -- Simplify the derivative expression have heq : alpha_seed * (Real.exp (-(g / alpha_seed)) * (-(1 / alpha_seed))) = -(alpha_seed * Real.exp (-(g / alpha_seed)) / alpha_seed) := by field_simp rw [← heq] exact h3.derivThe derivative of α⁻¹ with respect to f_gap is −α⁻¹/α_seed, meaning the relative rate of change is constant. deriv_alphaInv_of_gap · IndisputableMonolith/Constants/AlphaExponentialForm.lean- OPENThe integer 44 = 4·11 is forced combinatorially, but its identification as the seed coupling α_seed is not derived.