def
definition
G_rs
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Constants.GravitationalConstant on GitHub at line 30.
browse module
All declarations in this module, on Recognition.
explainer page
Derivations using this theorem
depends on
used by
-
gravitational_constant_derived -
G_rs_pos -
all_constants_from_phi -
G_algebraic_in_φ -
G_ℏ_product -
G_pos -
G_rs -
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
27/-- Newton's gravitational constant G in RS-native units.
28 G = λ²_rec · c³ / (π · ℏ) with λ_rec = c = 1, ℏ = φ⁻⁵.
29 Thus G = φ⁵ / π. -/
30noncomputable def G_rs : ℝ := phi ^ 5 / Real.pi
31
32/-- G > 0. -/
33theorem G_rs_pos : 0 < G_rs := by
34 unfold G_rs
35 apply div_pos
36 · exact pow_pos phi_pos 5
37 · exact Real.pi_pos
38
39/-! ## C-002 Resolution -/
40
41/-- **C-002 Resolution**: The gravitational constant is determined by φ and π.
42
43 G = φ⁵/π has no free parameters. It arises from the ledger geometry:
44 - λ_rec: the fundamental recognition wavelength (ℓ₀ = 1 in RS units)
45 - c: speed of light (1 in RS units)
46 - ℏ: Planck constant (E_coh = φ⁻⁵ in RS units)
47
48 The "least precisely known" constant in SI becomes a derived quantity. -/
49theorem gravitational_constant_derived :
50 0 < G_rs ∧ G_rs = phi ^ 5 / Real.pi :=
51 ⟨G_rs_pos, rfl⟩
52
53end GravitationalConstant
54end Constants
55end IndisputableMonolith