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

gravitational_potential

definition
show as:
view math explainer →
module
IndisputableMonolith.Gravity.ZeroParameterGravity
domain
Gravity
line
81 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.Gravity.ZeroParameterGravity on GitHub at line 81.

browse module

All declarations in this module, on Recognition.

explainer page

Tracked in the explainer inventory; generation is lazy so crawlers do not trigger LLM jobs.

open explainer

depends on

used by

formal source

  78
  79/-- Gravitational potential at distance r (in RS units) from a mass M.
  80    Φ(r) = -G·M/r where G is determined by φ. -/
  81noncomputable def gravitational_potential (M r : ℝ) : ℝ :=
  82  -G * M / r
  83
  84/-- The gravitational potential is negative for positive mass at positive distance. -/
  85theorem potential_negative (M r : ℝ) (hM : 0 < M) (hr : 0 < r) :
  86    gravitational_potential M r < 0 := by
  87  unfold gravitational_potential
  88  have eq : -G * M / r = -(G * M / r) := by ring
  89  rw [eq]
  90  exact neg_lt_zero.mpr (div_pos (mul_pos G_pos hM) hr)
  91
  92/-! ## No Separate Quantization Needed -/
  93
  94/-- **G-001 Resolution**: There is no "quantum gravity" problem in RS.
  95
  96    Gravity is not a fundamental force requiring quantization.
  97    Gravity is the large-scale curvature of the ledger lattice.
  98    The ledger IS already the quantum structure.
  99    "Quantizing gravity" is like "quantizing temperature" — a category error.
 100
 101    The ledger provides:
 102    1. Discrete states (quantum structure) at small scales
 103    2. Continuous curvature (gravity) at large scales
 104    3. Both from the SAME J-cost dynamics
 105    4. No UV divergences because the lattice provides a natural cutoff -/
 106theorem gravity_from_ledger :
 107    Foundation.DimensionForcing.eight_tick = 8 ∧
 108    0 < kappa_rs :=
 109  ⟨rfl, kappa_pos⟩
 110
 111/-- Extract the discrete 8-tick anchor from the gravity-from-ledger bundle. -/