Encyclopedia Constants Constants Alpha Genesis Kappa Gamma Irreducibility Alpha Inv K Strict Mono
ARTICLE 3 claims 2 theorems 1 open
Constants Alpha Genesis Kappa Gamma Irreducibility Alpha Inv K Strict Mono
A simple monotonicity theorem shows that a scaled construction cannot, by itself, pin down the fine-structure constant.
A scaling family and its limits
The fine-structure constant α is one of physics' most precisely measured numbers, yet no one has derived it from first principles. In the Recognition Science framework, a machine-checked library of formal theorems explores what such a derivation could and could not look like. One small but instructive result concerns a one-parameter family of candidate values for the inverse fine-structure constant, 1/α. The family is defined by scaling a single base value by a positive real number κ, written as alphaInvK κ = κ * alphaInv. The theorem alphaInvK_strictMono proves that this scaling function is strictly monotone: if κ₁ < κ₂, then alphaInvK κ₁ < alphaInvK κ₂. In plain terms, distinct normalizations always give distinct values of 1/α, so the family never folds two different scalings into the same number.
Strict monotonicity is a purely formal property of the defined family. It is proved in the framework's library as a theorem, meaning it follows from the definitions by the rules of logic alone, with no additional assumptions. The proof is a one-liner: multiplying a positive base value by a larger positive number gives a larger product. From this, the library immediately derives that the family is injective: each value of 1/α in the family corresponds to exactly one scaling κ. This injectivity is the key fact used in a broader no-go result. The framework's closure predicate, a set of three arithmetic facts about a cube's edges and cycles, holds for every κ by construction. Since the closure condition is κ-independent and the family is injective, the closure predicate cannot single out any particular value of 1/α. The theorem kappa_blind_closure_cannot_pin states this precisely: no satisfiable predicate that does not mention κ can force the family to a unique value.
What this does not claim is just as important as what it proves. The theorem does not say that the fine-structure constant is not derivable, nor that no physical law can determine it. It says only that this particular κ-scaled family, together with this particular κ-independent closure condition, fails to pin down a value. The framework's own documentation is explicit: the theorem is a correct scoped normalization-coordinate result, not a proof that the physical coupling is primitive. The missing piece is a matter-charge variable. The module has no such variable, so it cannot even state the field-rescaling invariant q²/κ, which a more complete gauge-plus-matter model would need. The exact classification of coupling normalizations lives elsewhere, in a file called CouplingNormalizationOrbit.lean, which is not part of this result.
The practical upshot is a cautionary tale about what a derivation must include. A set of conditions that does not even mention the scaling parameter cannot hope to select a unique value from a family that varies with that parameter. This is not a failure of the framework; it is a precise statement of the kind of information that would be needed. The theorem also illustrates the framework's method: prove a clean formal fact, state its scope honestly, and let the reader see exactly what is and is not established. The value of 1/α itself, the physical identification of the family, and the question of whether any future law could determine the constant all remain open targets, not settled by this result.
THEOREM alphaInvK_strictMono · 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
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
What this page does not claim
The fine-structure constant α is not derivable from first principles. The alphaInvK family represents the physical inverse coupling constant. The closure predicate carries any evidential weight for the value of α.
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, such as a matter-charge variable, would be needed to state the field-rescaling invariant q²/κ?
- Does the more complete gauge-plus-matter model in CouplingNormalizationOrbit.lean succeed in classifying coupling normalizations?
- Could any κ-independent physical law, beyond the closure predicate, determine a unique value from the alphaInvK family?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM alphaInvK_strictMono · 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_posThe theorem alphaInvK_strictMono proves that the scaling function is strictly monotone: if κ₁ < κ₂, then alphaInvK κ₁ < alphaInvK κ₂. alphaInvK_strictMono · IndisputableMonolith/Constants/AlphaGenesis/KappaGammaIrreducibility.leanTHEOREM 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 thisSince the closure condition is κ-independent and the family is injective, the closure predicate cannot single out any particular value of 1/α. kappa_blind_closure_cannot_pin · IndisputableMonolith/Constants/AlphaGenesis/KappaGammaIrreducibility.lean- OPENThe result does not say that the fine-structure constant is not derivable, nor that no physical law can determine it.