Encyclopedia Constants Constants Alpha Exponential Form Alpha Inv Of Gap At Canonical
ARTICLE 5 claims 4 theorems 1 model
Constants Alpha Exponential Form Alpha Inv Of Gap At Canonical
A machine-checked theorem confirms that a proposed formula for the inverse fine-structure constant agrees with the value it is designed to reproduce, but the theorem does not derive that value.
The canonical identity
The inverse fine-structure constant α⁻¹ is a fundamental number in physics, approximately 137.036, that sets the strength of the electromagnetic force. In the Recognition Science framework, a proposed formula for this constant takes the form α⁻¹ = α_seed · exp(-f_gap / α_seed), where α_seed = 4π¹¹ and f_gap = w₈·ln(φ). The declaration alphaInv_of_gap_at_canonical is a theorem in the framework's machine-checked library of formal theorems. It proves that this exponential formula, when evaluated at the specific gap value f_gap, is exactly equal to the framework's defined value for α⁻¹.
The theorem is a statement of internal consistency: it confirms that the general exponential function alphaInv_of_gap reduces to the canonical value alphaInv when its argument is set to the canonical gap. This is a definitional identity, proved by unfolding the definitions. It does not claim that the exponential form is derived from first principles, nor that the value 137.035999 is predicted. The integer 44 in the seed 4π¹¹ is a forced combinatorial identity within the framework, but its identification as the α⁻¹ seed coupling is not forced. The exponential form itself is a structural choice, not a derived consequence.
The framework's library does prove structural properties of this exponential form. It proves that the formula produces a positive value, consistent with the physical requirement for a coupling constant. It proves that the logarithm of the ratio α⁻¹/α_seed is linear in f_gap, and that the logarithmic derivative is constant, a hallmark of running-coupling behavior. These theorems establish the formula's internal mathematical coherence. However, the library explicitly leaves open whether the exponential form is uniquely forced by the framework's structural principles. The uniqueness statement is stated as an unproved proposition, and the physical question of why the logarithmic derivative should be constant remains a genuine gap.
In plain terms, the declaration alphaInv_of_gap_at_canonical is a check that one proposed formula is consistent with the value it is meant to represent. It is not a derivation of that value. The exact infrared value of α⁻¹ remains a boundary datum, closed by a separate no-go result. The framework's contribution is a structural analysis of a plausible exponential form, not a proof that this form is the only possible one.
THEOREM alphaInv_of_gap_at_canonical · IndisputableMonolith/Constants/AlphaExponentialForm.lean
/-- At the canonical f_gap, alphaInv_of_gap agrees with alphaInv. -/
theorem alphaInv_of_gap_at_canonical : alphaInv_of_gap f_gap = alphaInv := rfl
THEOREM alphaInv_positive · IndisputableMonolith/Constants/AlphaExponentialForm.lean
/-- The exponential formula produces a positive value. -/
theorem alphaInv_positive : 0 < alphaInv := by
unfold alphaInv
exact mul_pos alpha_seed_positive (Real.exp_pos _)
THEOREM log_alphaInv_seed_ratio · IndisputableMonolith/Constants/AlphaExponentialForm.lean
/-- The log of the ratio alphaInv/alpha_seed equals -f_gap/alpha_seed. -/
theorem log_alphaInv_seed_ratio :
Real.log (alphaInv / alpha_seed) = -(f_gap / alpha_seed) := by
rw [alphaInv_seed_ratio]
exact Real.log_exp _
THEOREM logarithmic_derivative_constant · IndisputableMonolith/Constants/AlphaExponentialForm.lean
/-- The logarithmic derivative: d ln(α⁻¹)/d(f_gap) = -1/α_seed (constant). -/
theorem logarithmic_derivative_constant (g : ℝ) :
deriv (fun g => Real.log (alphaInv_of_gap g)) g = -(1 / alpha_seed) := by
have hpos : 0 < alphaInv_of_gap g := by
unfold alphaInv_of_gap
exact mul_pos alpha_seed_positive (Real.exp_pos _)
have h_log_eq : ∀ g, Real.log (alphaInv_of_gap g) =
Real.log alpha_seed + (-(g / alpha_seed)) := by
intro g
unfold alphaInv_of_gap
rw [Real.log_mul (ne_of_gt alpha_seed_positive) (ne_of_gt (Real.exp_pos _)), Real.log_exp]
-- deriv of (Real.log α_seed + (-(g / α_seed))) = deriv of (-(g/α_seed)) = -1/α_seed
have h_fun_eq : (fun g => Real.log (alphaInv_of_gap g)) =
(fun g => Real.log alpha_seed + (-(g / alpha_seed))) := by
funext g
exact h_log_eq g
rw [h_fun_eq]
have h_const_derivable : HasDerivAt (fun _ : ℝ => Real.log alpha_seed) 0 g :=
hasDerivAt_const g _
have h_lin_derivable : HasDerivAt (fun g => -(g / alpha_seed)) (-(1 / alpha_seed)) g := by
have h1 : HasDerivAt (fun g : ℝ => g) 1 g := hasDerivAt_id g
have h2 : HasDerivAt (fun g : ℝ => g / alpha_seed) (1 / alpha_seed) g :=
h1.div_const alpha_seed
exact h2.neg
have : HasDerivAt (fun g => Real.log alpha_seed + (-(g / alpha_seed))) (0 + -(1 / alpha_seed)) g :=
h_const_derivable.add h_lin_derivable
rw [zero_add] at this
exact this.deriv
MODEL alphaInv_def · IndisputableMonolith/Constants/AlphaExponentialForm.lean
/-- The alphaInv formula unfolds to the exponential expression. -/
theorem alphaInv_def : alphaInv = alpha_seed * Real.exp (-(f_gap / alpha_seed)) := rfl
What this page does not claim
The theorem does not derive the numerical value 137.035999 from first principles. The theorem does not prove that the exponential form is the only possible formula consistent with the framework. The theorem does not establish that the identification of 44 as the seed coupling is forced.
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/AlphaExponentialForm.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 structural principles would uniquely force the exponential form of α⁻¹?
- Why should the logarithmic derivative of α⁻¹ be constant in the Recognition Science derivation?
- What physical justification exists for identifying the combinatorial integer 44 as the seed coupling?
- How does the framework's proposed formula compare to measured values of α⁻¹?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM alphaInv_of_gap_at_canonical · IndisputableMonolith/Constants/AlphaExponentialForm.lean
/-- At the canonical f_gap, alphaInv_of_gap agrees with alphaInv. -/ theorem alphaInv_of_gap_at_canonical : alphaInv_of_gap f_gap = alphaInv := rflThe declaration alphaInv_of_gap_at_canonical proves that the exponential formula for α⁻¹, when evaluated at the canonical gap f_gap, is exactly equal to the framework's defined value for α⁻¹. alphaInv_of_gap_at_canonical · IndisputableMonolith/Constants/AlphaExponentialForm.leanTHEOREM alphaInv_positive · IndisputableMonolith/Constants/AlphaExponentialForm.lean
/-- The exponential formula produces a positive value. -/ theorem alphaInv_positive : 0 < alphaInv := by unfold alphaInv exact mul_pos alpha_seed_positive (Real.exp_pos _)The framework's library proves that the exponential formula produces a positive value. alphaInv_positive · IndisputableMonolith/Constants/AlphaExponentialForm.leanTHEOREM log_alphaInv_seed_ratio · IndisputableMonolith/Constants/AlphaExponentialForm.lean
/-- The log of the ratio alphaInv/alpha_seed equals -f_gap/alpha_seed. -/ theorem log_alphaInv_seed_ratio : Real.log (alphaInv / alpha_seed) = -(f_gap / alpha_seed) := by rw [alphaInv_seed_ratio] exact Real.log_exp _The framework's library proves that the logarithm of the ratio α⁻¹/α_seed is linear in f_gap. log_alphaInv_seed_ratio · IndisputableMonolith/Constants/AlphaExponentialForm.leanTHEOREM logarithmic_derivative_constant · IndisputableMonolith/Constants/AlphaExponentialForm.lean
/-- The logarithmic derivative: d ln(α⁻¹)/d(f_gap) = -1/α_seed (constant). -/ theorem logarithmic_derivative_constant (g : ℝ) : deriv (fun g => Real.log (alphaInv_of_gap g)) g = -(1 / alpha_seed) := by have hpos : 0 < alphaInv_of_gap g := by unfold alphaInv_of_gap exact mul_pos alpha_seed_positive (Real.exp_pos _) have h_log_eq : ∀ g, Real.log (alphaInv_of_gap g) = Real.log alpha_seed + (-(g / alpha_seed)) := by intro g unfold alphaInv_of_gap rw [Real.log_mul (ne_of_gt alpha_seed_positive) (ne_of_gt (Real.exp_pos _)), Real.log_exp] -- deriv of (Real.log α_seed + (-(g / α_seed))) = deriv of (-(g/α_seed)) = -1/α_seed have h_fun_eq : (fun g => Real.log (alphaInv_of_gap g)) = (fun g => Real.log alpha_seed + (-(g / alpha_seed))) := by funext g exact h_log_eq g rw [h_fun_eq] have h_const_derivable : HasDerivAt (fun _ : ℝ => Real.log alpha_seed) 0 g := hasDerivAt_const g _ have h_lin_derivable : HasDerivAt (fun g => -(g / alpha_seed)) (-(1 / alpha_seed)) g := by have h1 : HasDerivAt (fun g : ℝ => g) 1 g := hasDerivAt_id g have h2 : HasDerivAt (fun g : ℝ => g / alpha_seed) (1 / alpha_seed) g := h1.div_const alpha_seed exact h2.neg have : HasDerivAt (fun g => Real.log alpha_seed + (-(g / alpha_seed))) (0 + -(1 / alpha_seed)) g := h_const_derivable.add h_lin_derivable rw [zero_add] at this exact this.derivThe framework's library proves that the logarithmic derivative of α⁻¹ with respect to f_gap is constant. logarithmic_derivative_constant · IndisputableMonolith/Constants/AlphaExponentialForm.leanMODEL alphaInv_def · IndisputableMonolith/Constants/AlphaExponentialForm.lean
/-- The alphaInv formula unfolds to the exponential expression. -/ theorem alphaInv_def : alphaInv = alpha_seed * Real.exp (-(f_gap / alpha_seed)) := rflThe exponential form of α⁻¹ is a structural choice, not a derived consequence. alphaInv_def · IndisputableMonolith/Constants/AlphaExponentialForm.lean