Encyclopedia Constants Constants Alpha Alpha Inv Components Eq
ARTICLE 2 claims 1 theorem 1 model
Constants Alpha Alpha Inv Components Eq
The inverse fine-structure constant is a number assembled from two parts; this theorem says which two, and nothing more.
What the components equality says
The fine-structure constant α measures the strength of the electromagnetic force between charged particles. Its inverse, α⁻¹, is close to 137.036. In the Recognition Science framework, the number α⁻¹ is not taken as a free input: it is built from a seed and a gap. The lemma alphaInv_components_eq states, in the framework's machine-checked library of formal theorems, that the assembled expression for α⁻¹ equals the seed multiplied by the exponential of minus the gap divided by the seed. That is all it states. It is a restatement of the definition of α⁻¹, not a derivation of its value.
The seed is 4π·11, a geometric quantity: 4π is the total curvature of a sphere, and 11 counts the passive edges of a cube under an eight-tick projection. The gap is the information cost of the recognition process, written as the product of an eight-tick weight and the natural logarithm of the golden ratio. The theorem's content is purely structural: it names the two objects from which α⁻¹ is assembled. It says nothing about whether those objects are forced by the framework's axioms, and it says nothing about whether the resulting number matches the measured coupling.
In Recognition Science, the honest status of α⁻¹ is explicit. The framework proves it does not derive the measured value. A separate no-go result shows the forced closure is blind to the normalization of the electromagnetic field, and that every positive value of α⁻¹ can be realized by some choice of that normalization. The exact infrared value is a boundary datum, not a theorem. The components equality is therefore a witness, not a prediction: it shows the construction is well-defined and internally consistent, but it does not claim to explain why α⁻¹ is 137.035999 rather than some other number.
What the lemma does for a reader is give a precise, checkable statement of what the framework's α⁻¹ expression is. It separates the definitional core from the empirical comparison. The comparison against the measured value, which lands within about 5.6 parts per million, is a separate empirical check, not a consequence of this equality. The equality itself is a small, true, and deliberately modest statement: it says which two parts make up the whole, and it stops there.
THEOREM alphaInv_components_eq · IndisputableMonolith/Constants/Alpha.lean
/-- `alphaInv` is assembled from the seed and the gap, which is a restatement of
the definition and carries no derivation content. It says which two objects
the expression is built from, and nothing about whether either is forced or
whether the result is the measured coupling. Renamed from
`alpha_components_derived` on 2026-07-25 because that name claimed the
opposite. -/
lemma alphaInv_components_eq :
(∃ (seed gap : ℝ),
alphaInv = seed * Real.exp (-(gap / seed)) ∧
seed = alpha_seed ∧
gap = f_gap) := by
refine ⟨alpha_seed, f_gap, ?_⟩
simp
@[deprecated alphaInv_components_eq (since := "2026-07-25")]
alias alpha_components_derived := alphaInv_components_eq
MODEL alpha_seed · IndisputableMonolith/Constants/Alpha.lean
/-- **RETIRED SEED.** `4π·11`, the baseline spherical closure cost read over 11
interaction paths.
Retired by `papers/Forced_Coupling_NoGo_20260626.tex`: the `11` is the passive
field-edge count on `Q₃`, not the gauge-invariant photon count, and
`AlphaGenesis.U1Normalization.seed_channel_count_ne_gauge_dof` proves the two
differ. The forced count is the cycle rank `5`, giving
`AlphaStatus.alphaInvKinematic`. Kept because `alphaInv` and its downstream
band certificates are defined from it. Do not use it in new work. -/
@[simp] def alpha_seed : ℝ := 4 * Real.pi * 11
What this page does not claim
This answer does not claim that alphaInv_components_eq derives the measured value of the fine-structure constant. This answer does not claim that the seed 4π·11 is a derived gauge normalization rather than an identification. This answer does not claim that the framework's value for α⁻¹ falls within the certified band (137.030, 137.039) or matches CODATA.
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/Alpha.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 exactly is the eight-tick weight and how is it computed from the golden ratio?
- Why is the electromagnetic coupling a boundary datum rather than a derived quantity?
- What does the no-go result say about the possibility of deriving α⁻¹ from the forced sector alone?
- How does the framework's value for α⁻¹ compare to the measured CODATA 2022 value, and what is the significance of the difference?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM alphaInv_components_eq · IndisputableMonolith/Constants/Alpha.lean
/-- `alphaInv` is assembled from the seed and the gap, which is a restatement of the definition and carries no derivation content. It says which two objects the expression is built from, and nothing about whether either is forced or whether the result is the measured coupling. Renamed from `alpha_components_derived` on 2026-07-25 because that name claimed the opposite. -/ lemma alphaInv_components_eq : (∃ (seed gap : ℝ), alphaInv = seed * Real.exp (-(gap / seed)) ∧ seed = alpha_seed ∧ gap = f_gap) := by refine ⟨alpha_seed, f_gap, ?_⟩ simp @[deprecated alphaInv_components_eq (since := "2026-07-25")] alias alpha_components_derived := alphaInv_components_eqThe lemma alphaInv_components_eq states, in the framework's machine-checked library of formal theorems, that the assembled expression for α⁻¹ equals the seed multiplied by the exponential of minus the gap divided by the seed. alphaInv_components_eq · IndisputableMonolith/Constants/Alpha.leanMODEL alpha_seed · IndisputableMonolith/Constants/Alpha.lean
/-- **RETIRED SEED.** `4π·11`, the baseline spherical closure cost read over 11 interaction paths. Retired by `papers/Forced_Coupling_NoGo_20260626.tex`: the `11` is the passive field-edge count on `Q₃`, not the gauge-invariant photon count, and `AlphaGenesis.U1Normalization.seed_channel_count_ne_gauge_dof` proves the two differ. The forced count is the cycle rank `5`, giving `AlphaStatus.alphaInvKinematic`. Kept because `alphaInv` and its downstream band certificates are defined from it. Do not use it in new work. -/ @[simp] def alpha_seed : ℝ := 4 * Real.pi * 11The seed is 4π·11, a geometric quantity: 4π is the total curvature of a sphere, and 11 counts the passive edges of a cube under an eight-tick projection. alpha_seed · IndisputableMonolith/Constants/Alpha.lean