Encyclopedia Foundation Foundation Primitive Recognition Calculus Prcexp Log Field Alpha Inv Mem T
ARTICLE 4 claims 4 theorems
Foundation Primitive Recognition Calculus Prcexp Log Field Alpha Inv Mem T
The inverse fine-structure constant, like every constant the framework builds, lives inside a countable field that is closed under the operations that make it.
A countable home for the constants
The real numbers are a vast continuum, but the constants of physics that the Recognition Science framework derives are far more economical. The declaration alphaInv_mem_T proves that the framework's expression for the inverse fine-structure constant, written as 44·π·exp(−w₈·ln φ/(44·π)), is an element of a specific countable subfield of the reals, called T. This field is built from just two seeds, π and the golden ratio φ, by repeatedly taking field operations, exponentials, and logarithms. The theorem shows that every step of that construction lands back inside T, so the constant is produced without ever leaving this countable workspace.
The construction proceeds in stages. The first stage is the smallest subfield containing π and φ. Each later stage takes the current field, adds the exponentials and logarithms of all its elements, and then closes under field operations. The field T is the union of this increasing chain of stages. The library proves that each stage is countable, and therefore T itself is countable, even though it contains π, φ, e, and the inverse fine-structure constant. The theorem also shows T is closed under exp and log, meaning applying either function to any element of T always yields another element of T.
The practical consequence is that the framework's constants do not require the full uncountable real line as their workspace. A countable field suffices for every operation that builds them. The continuum remains only as the ambient setting in which the standard exp and log functions happen to be defined, not as something the framework's constructions must draw upon. This is a structural fact about the constants' provenance, not a numerical claim about their values.
The theorem does not assert that the inverse fine-structure constant is a rational number, nor that it is algebraic. It does not claim that the expression equals the measured CODATA value, nor that the seed 44·π is derived from first principles. It only establishes membership in a countable, operationally closed field. The numerical agreement with measurement, and the status of the seed, remain separate questions.
THEOREM alphaInv_mem_T · IndisputableMonolith/Foundation/PrimitiveRecognitionCalculus/PRCExpLogField.lean
/-- **The payoff: α⁻¹ is built entirely inside `T`.** Every operation in
`α⁻¹ = 44·π·exp(−w₈·ln φ/(44·π))` (field operations, one `log`, one `exp`) lands in
`T`, so the constant is a `T`-element produced without leaving the countable
field. -/
theorem alphaInv_mem_T : MinimalField.alphaInv ∈ T := by
have hpi : Real.pi ∈ T := pi_mem_T
have hphi : Real.goldenRatio ∈ T := phi_mem_T
have h44 : (44 : ℝ) ∈ T := by exact_mod_cast (natCast_mem T 44)
have hw8 : MinimalField.w8 ∈ T := by
unfold MinimalField.w8
exact_mod_cast (natCast_mem T 4)
have hlogphi : Real.log Real.goldenRatio ∈ T := T_log_closed hphi
have harg :
-(MinimalField.w8) * Real.log Real.goldenRatio / (44 * Real.pi) ∈ T :=
div_mem (mul_mem (neg_mem hw8) hlogphi) (mul_mem h44 hpi)
have hexp :
Real.exp (-(MinimalField.w8) * Real.log Real.goldenRatio / (44 * Real.pi)) ∈ T :=
T_exp_closed harg
unfold MinimalField.alphaInv
exact mul_mem (mul_mem h44 hpi) hexp
THEOREM gens · IndisputableMonolith/Foundation/PrimitiveRecognitionCalculus/PRCExpLogField.lean
/-- The generators of the exp/log closure: π and φ. Rationals come for free as the
prime field of any subfield, so these two transcendental/algebraic seeds plus the
field and exp/log operations reach every RS constant. -/
noncomputable def gens : Set ℝ := {Real.pi, Real.goldenRatio}
THEOREM T_countable · IndisputableMonolith/Foundation/PrimitiveRecognitionCalculus/PRCExpLogField.lean
/-- `T` is countable: a countable union of countable stages. -/
theorem T_countable : (T : Set ℝ).Countable := by
rw [T_coe]
exact Set.countable_iUnion S_countable
THEOREM T_exp_closed · IndisputableMonolith/Foundation/PrimitiveRecognitionCalculus/PRCExpLogField.lean
/-- `T` is closed under `exp`. -/
theorem T_exp_closed {x : ℝ} (hx : x ∈ T) : Real.exp x ∈ T := by
rw [mem_T_iff] at hx ⊢
obtain ⟨n, hn⟩ := hx
refine ⟨n + 1, ?_⟩
have : Real.exp x ∈ Sstep (S n) :=
Subfield.subset_closure (Or.inl (Or.inr ⟨x, hn, rfl⟩))
exact this
What this page does not claim
The inverse fine-structure constant is rational or algebraic. The expression equals the measured CODATA value of the inverse fine-structure constant. The seed 44·π is derived from first principles within the framework.
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/Foundation/PrimitiveRecognitionCalculus/PRCExpLogField.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 exact numerical value of the expression 44·π·exp(−w₈·ln φ/(44·π))?
- How does the framework derive the seed 44·π for the inverse fine-structure constant?
- What is the significance of the framework's constants living in a countable field for the philosophy of mathematics?
- Does the countable field T contain all real numbers that are definable by exp and log from π and φ?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM alphaInv_mem_T · IndisputableMonolith/Foundation/PrimitiveRecognitionCalculus/PRCExpLogField.lean
/-- **The payoff: α⁻¹ is built entirely inside `T`.** Every operation in `α⁻¹ = 44·π·exp(−w₈·ln φ/(44·π))` (field operations, one `log`, one `exp`) lands in `T`, so the constant is a `T`-element produced without leaving the countable field. -/ theorem alphaInv_mem_T : MinimalField.alphaInv ∈ T := by have hpi : Real.pi ∈ T := pi_mem_T have hphi : Real.goldenRatio ∈ T := phi_mem_T have h44 : (44 : ℝ) ∈ T := by exact_mod_cast (natCast_mem T 44) have hw8 : MinimalField.w8 ∈ T := by unfold MinimalField.w8 exact_mod_cast (natCast_mem T 4) have hlogphi : Real.log Real.goldenRatio ∈ T := T_log_closed hphi have harg : -(MinimalField.w8) * Real.log Real.goldenRatio / (44 * Real.pi) ∈ T := div_mem (mul_mem (neg_mem hw8) hlogphi) (mul_mem h44 hpi) have hexp : Real.exp (-(MinimalField.w8) * Real.log Real.goldenRatio / (44 * Real.pi)) ∈ T := T_exp_closed harg unfold MinimalField.alphaInv exact mul_mem (mul_mem h44 hpi) hexpThe inverse fine-structure constant is an element of a specific countable subfield of the reals, called T. alphaInv_mem_T · IndisputableMonolith/Foundation/PrimitiveRecognitionCalculus/PRCExpLogField.leanTHEOREM gens · IndisputableMonolith/Foundation/PrimitiveRecognitionCalculus/PRCExpLogField.lean
/-- The generators of the exp/log closure: π and φ. Rationals come for free as the prime field of any subfield, so these two transcendental/algebraic seeds plus the field and exp/log operations reach every RS constant. -/ noncomputable def gens : Set ℝ := {Real.pi, Real.goldenRatio}The field T is built from just two seeds, π and the golden ratio φ, by repeatedly taking field operations, exponentials, and logarithms. gens · IndisputableMonolith/Foundation/PrimitiveRecognitionCalculus/PRCExpLogField.leanTHEOREM T_countable · IndisputableMonolith/Foundation/PrimitiveRecognitionCalculus/PRCExpLogField.lean
/-- `T` is countable: a countable union of countable stages. -/ theorem T_countable : (T : Set ℝ).Countable := by rw [T_coe] exact Set.countable_iUnion S_countableT is countable, even though it contains π, φ, e, and the inverse fine-structure constant. T_countable · IndisputableMonolith/Foundation/PrimitiveRecognitionCalculus/PRCExpLogField.leanTHEOREM T_exp_closed · IndisputableMonolith/Foundation/PrimitiveRecognitionCalculus/PRCExpLogField.lean
/-- `T` is closed under `exp`. -/ theorem T_exp_closed {x : ℝ} (hx : x ∈ T) : Real.exp x ∈ T := by rw [mem_T_iff] at hx ⊢ obtain ⟨n, hn⟩ := hx refine ⟨n + 1, ?_⟩ have : Real.exp x ∈ Sstep (S n) := Subfield.subset_closure (Or.inl (Or.inr ⟨x, hn, rfl⟩)) exact thisT is closed under exp and log, meaning applying either function to any element of T always yields another element of T. T_exp_closed · IndisputableMonolith/Foundation/PrimitiveRecognitionCalculus/PRCExpLogField.lean