pith. machine review for the scientific record. sign in
theorem

G_

proved
show as:
view math explainer →
module
IndisputableMonolith.Foundation.ConstantDerivations
domain
Foundation
line
161 · github
papers citing
none yet

open explainer

Read the cached plain-language explainer.

open lean source

IndisputableMonolith.Foundation.ConstantDerivations on GitHub at line 161.

browse module

All declarations in this module, on Recognition.

explainer page

A cached Ask Recognition explainer exists for this declaration.

open explainer

formal source

 158
 159/-- G · ℏ = φ^5 · φ^(-5) = 1.
 160    This is the RS version of ℏG/c³ being dimensionless. -/
 161theorem G_ℏ_product : G_rs * ℏ_rs = 1 := by
 162  unfold G_rs ℏ_rs E_coh τ₀
 163  simp only [mul_one]
 164  -- φ^5 * φ^(-5) = 1
 165  rw [zpow_neg, mul_inv_cancel₀]
 166  exact pow_ne_zero 5 phi_pos.ne'
 167
 168/-! ## Fine Structure Constant: α -/
 169
 170/-- The geometric seed for α: 1/137.
 171    This comes from the holographic area count. -/
 172noncomputable def α_seed : ℝ := 1 / 137
 173
 174/-- The gap-45 correction factor.
 175    This accounts for the integration gap D²(D+2) = 45 at D = 3. -/
 176noncomputable def gap_correction : ℝ := 1 + 45 / (360 * 137)
 177
 178/-- **Fine structure constant** (approximate).
 179
 180    α emerges from the geometric seed (holographic area counting)
 181    with corrections from the gap-45 integration gap.
 182
 183    The derivation: α ≈ 1/137 × (1 + gap_45/(lcm×137))
 184
 185    More precisely, α⁻¹ ≈ 137.035999... which RS derives from
 186    geometric arguments involving φ, 8-tick, and gap-45. -/
 187noncomputable def α_rs : ℝ := α_seed * gap_correction
 188
 189/-- α⁻¹ ≈ 137.036 (RS prediction). -/
 190noncomputable def α_inverse_rs : ℝ := 1 / α_rs
 191