def
definition
G_rs
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Foundation.ConstantDerivations on GitHub at line 146.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
-
gravitational_constant_derived -
G_rs -
G_rs_pos -
all_constants_from_phi -
G_algebraic_in_φ -
G_ℏ_product -
G_pos -
G_rs_eq -
planck_length_rs -
planck_mass_eq -
planck_mass_rs -
RealityCertificate -
area_not_volume_certificate -
bekenstein_hawking_from_rs -
bekenstein_positive -
G_hbar_product_eq_one -
G_rs -
G_rs_pos -
brain_holography_fully_forced
formal source
143
144 In RS-native units with natural mass scale M₀ = 1/φ^5:
145 G = ℓ₀³ · φ^5 / τ₀² = 1 · φ^5 / 1 = φ^5. -/
146noncomputable def G_rs : ℝ := φ_val^(5 : ℤ)
147
148/-- G = φ^5 in RS-native units. -/
149theorem G_rs_eq : G_rs = φ_val^5 := rfl
150
151/-- G > 0. -/
152theorem G_pos : G_rs > 0 := by
153 unfold G_rs
154 exact pow_pos phi_pos 5
155
156/-- G is algebraic in φ. -/
157theorem G_algebraic_in_φ : ∃ n : ℤ, G_rs = φ_val^n := ⟨5, by simp [G_rs]⟩
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)