Encyclopedia Constants Constants Alpha Genesis Kappa Gamma Irreducibility Closure Selects No Value

ARTICLE 3 claims 3 theorems

Constants Alpha Genesis Kappa Gamma Irreducibility Closure Selects No Value

A machine-checked theorem shows that a certain class of structural conditions cannot single out the fine-structure constant's value, and it is careful to say what it does not prove.

The no-value theorem

The fine-structure constant α is a dimensionless number near 1/137.035999 that sets the strength of electromagnetic interactions between charged particles. A natural question is whether its value is forced by deeper mathematical structure, or whether it is simply a free parameter of nature. The declaration closure_selects_no_value addresses a specific version of that question inside the Recognition Science framework, and its answer is a carefully scoped negative result.

The theorem concerns a one-parameter family of candidate values. The framework defines a family α-1κ = κ · α-1, where κ is a positive real number that rescales the base inverse coupling. This family is injective: different κ values give different α-1 values, and as κ ranges over all positive numbers, the family sweeps out every positive value. The theorem then considers a predicate called ForcedClosure, which packages three arithmetic facts about cube cycle ranks, edge counts, and gauge redundancy. By definition, ForcedClosure ignores its κ argument entirely; it holds for every κ, or for none.

The result closure_selects_no_value states that for any two distinct positive target values t₁ and t₂, there exist two distinct positive κ values such that the family hits t₁ and t₂ respectively, and ForcedClosure holds at both. In plain language: the closure condition is satisfied at every normalization, so it cannot distinguish one value of the inverse coupling from another. The condition is blind to the very parameter it would need to pin down. This is a theorem about the defined family, proved in the machine-checked library of formal theorems with no unproved assumptions beyond the standard logical axioms.

The theorem does not claim that the physical fine-structure constant is not determined by deeper principles. It says only that this particular closure predicate, which ignores κ, cannot select a value from this particular family. The framework explicitly leaves open the possibility that a different invariant, such as the gauge-plus-matter quantity q²/κ, could identify the physical orbit. The module has no matter-charge variable, so it cannot even state that invariant. The exact value of α itself remains an open target, not a derived constant.

THEOREM closure_selects_no_value · IndisputableMonolith/Constants/AlphaGenesis/KappaGammaIrreducibility.lean
/-- Two distinct positive targets of the defined family are realized by two
distinct positive κ values. -/
theorem closure_selects_no_value (t₁ t₂ : ℝ) (h₁ : 0 < t₁) (h₂ : 0 < t₂) (hne : t₁ ≠ t₂) :
    ∃ κ₁ κ₂ : ℝ, 0 < κ₁ ∧ 0 < κ₂ ∧ κ₁ ≠ κ₂ ∧
      alphaInvK κ₁ = t₁ ∧ alphaInvK κ₂ = t₂ := by
  obtain ⟨κ₁, hκ₁, _, he₁⟩ := alphaInv_irreducible_under_closure t₁ h₁
  obtain ⟨κ₂, hκ₂, _, he₂⟩ := alphaInv_irreducible_under_closure t₂ h₂
  refine ⟨κ₁, κ₂, hκ₁, hκ₂, ?_, he₁, he₂⟩
  intro hk
  exact hne (by rw [← he₁, ← he₂, hk])
THEOREM alphaInvK_injective · alphaInv_irreducible_under_closure · IndisputableMonolith/Constants/AlphaGenesis/KappaGammaIrreducibility.lean
/-- … hence injective in `κ_γ`. -/
theorem alphaInvK_injective : Function.Injective alphaInvK :=
  alphaInvK_strictMono.injective
/-- The defined closure holds for every positive κ, while `alphaInvK` sweeps
every positive value. This is a theorem about the defined family, not global
irreducibility of the physical fine-structure constant. -/
theorem alphaInv_irreducible_under_closure :
    ∀ t : ℝ, 0 < t → ∃ κ : ℝ, 0 < κ ∧ ForcedClosure κ ∧ alphaInvK κ = t := by
  intro t ht
  have hne : Constants.alphaInv ≠ 0 := ne_of_gt alphaInv_pos
  refine ⟨t / Constants.alphaInv, div_pos ht alphaInv_pos, forcedClosure_holds _, ?_⟩
  unfold alphaInvK
  field_simp
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 determined by deeper principles. The theorem does not establish that α⁻¹ is the physical inverse coupling, nor that every future physical law is κ-independent. The theorem does not derive the value of α; the exact value of the fine-structure constant remains an open target.

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:

MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND