Encyclopedia Constants Constants Alpha Genesis Kappa Gamma Irreducibility Kappa Blind Closure Cannot Pi
ARTICLE 3 claims 3 theorems
Constants Alpha Genesis Kappa Gamma Irreducibility Kappa Blind Closure Cannot Pi
A machine-checked theorem shows that a certain kind of structural condition cannot, by itself, determine the value of the fine-structure constant's inverse.
Why the closure cannot pick a number
The inverse fine-structure constant, written 1/α, is a number near 137.036 that characterizes the strength of electromagnetic interactions. A natural question is whether its value is forced by deep structure or is simply a contingent fact of our universe. The Recognition Science framework approaches this by defining a family of candidate values, each scaled by a positive parameter κ, and then asking whether a structural condition can select exactly one of them.
The family is simple: for any positive κ, the candidate value is κ times a fixed base value. As κ ranges over all positive numbers, this family sweeps through every positive real number. The structural condition, called forced closure, packages three arithmetic facts about a cube's edges, cycles, and gauge redundancy. The condition holds for every κ, because its definition ignores κ entirely.
In Recognition Science, a predicate pins a value when it forces that value to equal one specific target for every positive parameter satisfying the predicate. The theorem kappa_blind_closure_cannot_pin proves that no satisfiable predicate which is blind to κ, meaning it treats all κ values identically, can pin the family. The proof is short: if such a predicate held at κ=1 and κ=2, both would have to equal the same target, contradicting the fact that the family is injective, so distinct κ values give distinct results.
This is a theorem about the defined family, not about the physical world. It does not prove that the physical fine-structure constant is not primitive or irreducible. The module has no variable for electric charge, so it cannot even state the gauge-plus-matter invariant q²/κ. The exact classification of coupling normalizations lives in a separate file. The theorem also does not claim that every future physical law is κ-independent.
What the result does establish is a precise limit on a certain style of argument. If someone hopes to derive the value of 1/α from structural conditions alone, and those conditions are invariant under the κ-scaling, the theorem shows that hope is mathematically closed off within this framework. The value remains open, and any successful derivation must use information that distinguishes different κ values.
THEOREM kappa_blind_closure_cannot_pin · IndisputableMonolith/Constants/AlphaGenesis/KappaGammaIrreducibility.lean
/-- No satisfiable κ-independent predicate pins the injective observable
`alphaInvK`. A predicate may still identify the physical orbit invariant
`q²/κ`; that variable is outside this module. -/
theorem kappa_blind_closure_cannot_pin
{P : ℝ → Prop} (hconst : ∀ κ κ', P κ ↔ P κ') (hsat : ∃ κ, P κ) :
¬ Pins P alphaInvK := by
rintro ⟨t, ht⟩
obtain ⟨κ0, hκ0⟩ := hsat
have hP1 : P 1 := (hconst κ0 1).mp hκ0
have hP2 : P 2 := (hconst κ0 2).mp hκ0
have e1 : alphaInvK 1 = t := ht 1 (by norm_num) hP1
have e2 : alphaInvK 2 = t := ht 2 (by norm_num) hP2
have : (1 : ℝ) = 2 := alphaInvK_injective (by rw [e1, e2])
norm_num at this
THEOREM alphaInvK_injective · IndisputableMonolith/Constants/AlphaGenesis/KappaGammaIrreducibility.lean
/-- … hence injective in `κ_γ`. -/
theorem alphaInvK_injective : Function.Injective alphaInvK :=
alphaInvK_strictMono.injective
THEOREM forcedClosure_kappa_independent · IndisputableMonolith/Constants/AlphaGenesis/KappaGammaIrreducibility.lean
/-- The defined closure is κ-independent because its argument does not occur in
the body. -/
theorem forcedClosure_kappa_independent (κ κ' : ℝ) :
ForcedClosure κ ↔ ForcedClosure κ' := Iff.rfl
What this page does not claim
The theorem does not prove that the physical fine-structure constant is not primitive or irreducible. The theorem does not establish that every future physical law is κ-independent. The theorem does not assign any evidential weight to the empirically excluded construction band.
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/AlphaGenesis/KappaGammaIrreducibility.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 additional structure, beyond a κ-blind predicate, could select the physical value of the inverse fine-structure constant?
- How does the gauge-plus-matter invariant q²/κ change the non-pinning result?
- What is the exact classification of coupling normalizations in CouplingNormalizationOrbit.lean?
- Does the physical value of α remain open in the Recognition Science framework?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM kappa_blind_closure_cannot_pin · IndisputableMonolith/Constants/AlphaGenesis/KappaGammaIrreducibility.lean
/-- No satisfiable κ-independent predicate pins the injective observable `alphaInvK`. A predicate may still identify the physical orbit invariant `q²/κ`; that variable is outside this module. -/ theorem kappa_blind_closure_cannot_pin {P : ℝ → Prop} (hconst : ∀ κ κ', P κ ↔ P κ') (hsat : ∃ κ, P κ) : ¬ Pins P alphaInvK := by rintro ⟨t, ht⟩ obtain ⟨κ0, hκ0⟩ := hsat have hP1 : P 1 := (hconst κ0 1).mp hκ0 have hP2 : P 2 := (hconst κ0 2).mp hκ0 have e1 : alphaInvK 1 = t := ht 1 (by norm_num) hP1 have e2 : alphaInvK 2 = t := ht 2 (by norm_num) hP2 have : (1 : ℝ) = 2 := alphaInvK_injective (by rw [e1, e2]) norm_num at thisThe theorem kappa_blind_closure_cannot_pin proves that no satisfiable predicate which is blind to κ can pin the family. kappa_blind_closure_cannot_pin · IndisputableMonolith/Constants/AlphaGenesis/KappaGammaIrreducibility.leanTHEOREM alphaInvK_injective · IndisputableMonolith/Constants/AlphaGenesis/KappaGammaIrreducibility.lean
/-- … hence injective in `κ_γ`. -/ theorem alphaInvK_injective : Function.Injective alphaInvK := alphaInvK_strictMono.injectiveThe family alphaInvK is injective, so distinct κ values give distinct results. alphaInvK_injective · IndisputableMonolith/Constants/AlphaGenesis/KappaGammaIrreducibility.leanTHEOREM forcedClosure_kappa_independent · IndisputableMonolith/Constants/AlphaGenesis/KappaGammaIrreducibility.lean
/-- The defined closure is κ-independent because its argument does not occur in the body. -/ theorem forcedClosure_kappa_independent (κ κ' : ℝ) : ForcedClosure κ ↔ ForcedClosure κ' := Iff.rflThe structural condition forced closure holds for every κ, because its definition ignores κ entirely. forcedClosure_kappa_independent · IndisputableMonolith/Constants/AlphaGenesis/KappaGammaIrreducibility.lean