Encyclopedia Constants Constants Alpha Genesis Kappa Gamma Irreducibility Alpha Inv K Meets Band
ARTICLE 4 claims 4 theorems
Constants Alpha Genesis Kappa Gamma Irreducibility Alpha Inv K Meets Band
A machine-checked theorem shows that a scaled construction can land inside a numerical window, but the same theorem proves the construction cannot single out any one value.
A band, a family, and a no-go
The inverse fine-structure constant, written 1/α, is a dimensionless number near 137.036 that measures the strength of the electromagnetic force. The Recognition Science framework defines a one-parameter family of candidate values, alphaInvK, by scaling a base construction value by a positive factor κ. The theorem alphaInvK_meets_band proves that at κ = 1, this family produces a value strictly between 137.030 and 137.039, a window that brackets the measured constant. The proof is a closed arithmetic fact in the framework's machine-checked library of formal theorems; it uses the construction's numeric lower and upper bounds as inequalities, not as derivation inputs.
The same library proves a stronger and more consequential result. The family alphaInvK is strictly increasing in κ, hence injective: different κ values give different 1/α values. The framework also defines a predicate, ForcedClosure, that packages three arithmetic facts about a cube's edges, faces, and cycles. That predicate ignores its argument by definition, so it holds for every κ. The theorem alpha_not_pinned_by_forcedClosure then shows that no satisfiable κ-independent predicate can force alphaInvK to a single value. The proof compares κ = 1 and κ = 2: both satisfy the predicate, so a pinning predicate would force 1 = 2, contradicting injectivity.
In Recognition Science, this is a scoped normalization-coordinate result. It says that within this defined family, the closure facts do not select a unique inverse coupling. The theorem does not prove that the physical coupling is primitive, and it does not state the gauge-plus-matter invariant q²/κ that could identify the physical orbit. The module has no matter-charge variable, so that classification remains outside its scope. The band itself surrounds an empirically excluded construction value, so the meeting of the band carries no evidential weight for the physical constant.
The practical consequence is a sharp boundary on what the framework's current axioms can claim. The library proves that the family sweeps every positive value while the closure predicate holds everywhere, so the axioms underdetermine the constant. Any future claim that the framework derives the exact value of α must either introduce a κ-dependent predicate or a matter-charge relation, or it will contradict this no-go theorem.
THEOREM alphaInvK_meets_band · IndisputableMonolith/Constants/AlphaGenesis/KappaGammaIrreducibility.lean
/-- The κ-family meets the broad interval around the assembled construction at
κ = 1. The assembled value is empirically excluded; this theorem has no
evidential force. -/
theorem alphaInvK_meets_band :
∃ κ : ℝ, 0 < κ ∧ ForcedClosure κ ∧
(137.030 : ℝ) < alphaInvK κ ∧ alphaInvK κ < 137.039 := by
refine ⟨1, by norm_num, forcedClosure_holds 1, ?_, ?_⟩
· rw [alphaInvK_one]; exact Numerics.alphaInv_gt
· rw [alphaInvK_one]; exact Numerics.alphaInv_lt
THEOREM alphaInvK_strictMono · alphaInvK_injective · IndisputableMonolith/Constants/AlphaGenesis/KappaGammaIrreducibility.lean
/-- The κ_γ-scaling is strictly monotone: distinct normalizations give distinct
`α⁻¹`. -/
theorem alphaInvK_strictMono : StrictMono alphaInvK := by
intro a b hab
exact mul_lt_mul_of_pos_right hab alphaInv_pos
/-- … hence injective in `κ_γ`. -/
theorem alphaInvK_injective : Function.Injective alphaInvK :=
alphaInvK_strictMono.injective
THEOREM alpha_not_pinned_by_forcedClosure · IndisputableMonolith/Constants/AlphaGenesis/KappaGammaIrreducibility.lean
/-- The defined `ForcedClosure` does not pin `alphaInvK`. The proof compares
κ values 1 and 2. No physical coupling conclusion follows without the missing
matter-charge relation. -/
theorem alpha_not_pinned_by_forcedClosure : ¬ Pins ForcedClosure alphaInvK := by
rintro ⟨t, ht⟩
-- The closure holds at κ = 1 and κ = 2, so both values must equal t, forcing
-- alphaInvK 1 = alphaInvK 2, contradicting injectivity (1 ≠ 2).
have h1 : alphaInvK 1 = t := ht 1 (by norm_num) (forcedClosure_holds 1)
have h2 : alphaInvK 2 = t := ht 2 (by norm_num) (forcedClosure_holds 2)
have : alphaInvK 1 = alphaInvK 2 := by rw [h1, h2]
have : (1 : ℝ) = 2 := alphaInvK_injective this
norm_num at this
THEOREM alphaInvK_meets_band · IndisputableMonolith/Constants/AlphaGenesis/KappaGammaIrreducibility.lean
/-- The κ-family meets the broad interval around the assembled construction at
κ = 1. The assembled value is empirically excluded; this theorem has no
evidential force. -/
theorem alphaInvK_meets_band :
∃ κ : ℝ, 0 < κ ∧ ForcedClosure κ ∧
(137.030 : ℝ) < alphaInvK κ ∧ alphaInvK κ < 137.039 := by
refine ⟨1, by norm_num, forcedClosure_holds 1, ?_, ?_⟩
· rw [alphaInvK_one]; exact Numerics.alphaInv_gt
· rw [alphaInvK_one]; exact Numerics.alphaInv_lt
What this page does not claim
This theorem does not prove that the physical fine-structure constant is primitive or irreducible. This theorem does not derive the exact measured value of 1/α. This theorem does not state the field-rescaling invariant q²/κ, which requires a matter-charge variable outside this module.
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 is the gauge-plus-matter classification in CouplingNormalizationOrbit.lean that could identify the physical orbit invariant q²/κ?
- Does the Recognition Science framework provide any κ-dependent predicate that could pin the inverse coupling?
- What empirical evidence excludes the assembled construction value that the band surrounds?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM alphaInvK_meets_band · IndisputableMonolith/Constants/AlphaGenesis/KappaGammaIrreducibility.lean
/-- The κ-family meets the broad interval around the assembled construction at κ = 1. The assembled value is empirically excluded; this theorem has no evidential force. -/ theorem alphaInvK_meets_band : ∃ κ : ℝ, 0 < κ ∧ ForcedClosure κ ∧ (137.030 : ℝ) < alphaInvK κ ∧ alphaInvK κ < 137.039 := by refine ⟨1, by norm_num, forcedClosure_holds 1, ?_, ?_⟩ · rw [alphaInvK_one]; exact Numerics.alphaInv_gt · rw [alphaInvK_one]; exact Numerics.alphaInv_ltThe theorem alphaInvK_meets_band proves that at κ = 1, this family produces a value strictly between 137.030 and 137.039. alphaInvK_meets_band · IndisputableMonolith/Constants/AlphaGenesis/KappaGammaIrreducibility.leanTHEOREM alphaInvK_strictMono · alphaInvK_injective · IndisputableMonolith/Constants/AlphaGenesis/KappaGammaIrreducibility.lean
/-- The κ_γ-scaling is strictly monotone: distinct normalizations give distinct `α⁻¹`. -/ theorem alphaInvK_strictMono : StrictMono alphaInvK := by intro a b hab exact mul_lt_mul_of_pos_right hab alphaInv_pos/-- … hence injective in `κ_γ`. -/ theorem alphaInvK_injective : Function.Injective alphaInvK := alphaInvK_strictMono.injectiveThe family alphaInvK is strictly increasing in κ, hence injective. alphaInvK_strictMono · alphaInvK_injective · IndisputableMonolith/Constants/AlphaGenesis/KappaGammaIrreducibility.leanTHEOREM alpha_not_pinned_by_forcedClosure · IndisputableMonolith/Constants/AlphaGenesis/KappaGammaIrreducibility.lean
/-- The defined `ForcedClosure` does not pin `alphaInvK`. The proof compares κ values 1 and 2. No physical coupling conclusion follows without the missing matter-charge relation. -/ theorem alpha_not_pinned_by_forcedClosure : ¬ Pins ForcedClosure alphaInvK := by rintro ⟨t, ht⟩ -- The closure holds at κ = 1 and κ = 2, so both values must equal t, forcing -- alphaInvK 1 = alphaInvK 2, contradicting injectivity (1 ≠ 2). have h1 : alphaInvK 1 = t := ht 1 (by norm_num) (forcedClosure_holds 1) have h2 : alphaInvK 2 = t := ht 2 (by norm_num) (forcedClosure_holds 2) have : alphaInvK 1 = alphaInvK 2 := by rw [h1, h2] have : (1 : ℝ) = 2 := alphaInvK_injective this norm_num at thisThe theorem alpha_not_pinned_by_forcedClosure then shows that no satisfiable κ-independent predicate can force alphaInvK to a single value. alpha_not_pinned_by_forcedClosure · IndisputableMonolith/Constants/AlphaGenesis/KappaGammaIrreducibility.leanTHEOREM alphaInvK_meets_band · IndisputableMonolith/Constants/AlphaGenesis/KappaGammaIrreducibility.lean
/-- The κ-family meets the broad interval around the assembled construction at κ = 1. The assembled value is empirically excluded; this theorem has no evidential force. -/ theorem alphaInvK_meets_band : ∃ κ : ℝ, 0 < κ ∧ ForcedClosure κ ∧ (137.030 : ℝ) < alphaInvK κ ∧ alphaInvK κ < 137.039 := by refine ⟨1, by norm_num, forcedClosure_holds 1, ?_, ?_⟩ · rw [alphaInvK_one]; exact Numerics.alphaInv_gt · rw [alphaInvK_one]; exact Numerics.alphaInv_ltThe band itself surrounds an empirically excluded construction value, so the meeting of the band carries no evidential weight for the physical constant. alphaInvK_meets_band · IndisputableMonolith/Constants/AlphaGenesis/KappaGammaIrreducibility.lean