Encyclopedia Gravity Gravity Regge Convergence Regge Convergence Cert

ARTICLE 4 claims 3 theorems 1 model

Gravity Regge Convergence Regge Convergence Cert

A machine-checked certificate shows that a discrete lattice model of gravity matches Einstein's equations in the weak-field limit, while the full nonlinear case remains conditional.

The convergence certificate

The Regge action is a way of doing general relativity on a discrete lattice of points, rather than on a smooth continuous spacetime. It approximates the Einstein-Hilbert action, the central quantity whose variation gives Einstein's field equations, by summing geometric contributions over the simplices of a triangulation. The question is whether this discrete approximation becomes exact as the lattice spacing shrinks to zero, a property called convergence.

The certificate regge_convergence_cert is a machine-checked collection of formal theorems in the framework's library. It proves convergence in the linearized regime, where the gravitational field is weak, meaning the metric is close to flat spacetime. In this regime, the Regge action reduces to a lattice Laplacian action, and the certificate proves that this converges to the continuum Einstein-Hilbert action at a rate proportional to the square of the lattice spacing, written as O(a^2). This is an unconditional result: it holds for any sufficiently smooth function and any nonzero lattice spacing.

The linearized result covers the practical applications of gravity: solar system tests where the perturbation is about 10^-6, galaxy rotation curves at 10^-4, cosmic microwave background perturbations at 10^-5, and gravitational wave detection at 10^-21. In all these cases the weak-field condition holds, and the linearized Einstein field equations are an excellent approximation. Only black hole interiors and cosmological singularities require the full nonlinear regime.

For the nonlinear regime, the certificate is conditional. It defines a structure of conditions: bounded Riemann curvature, well-shaped triangulation, and a sufficiently small mesh size. Under these special quadratic conditions, the Regge action is assumed to converge at O(a^2). This is not the general Cheeger-Muller-Schrader theorem, which gives a curvature-measure convergence bound with a bulk term and a boundary-tube term, not a plain O(a^2) action estimate. The certificate explicitly records this distinction, warning against citing the special conditions as the general theorem.

What the certificate establishes, then, is a precise, machine-checked statement about the linearized case, which is sufficient for all tested applications of gravity, and a clearly scoped conditional statement for the nonlinear case. It does not prove the general nonlinear convergence theorem, and it does not claim that the lattice model reproduces all of general relativity without qualification. The certificate is a careful boundary marker: it shows exactly what is proved and exactly what remains conditional.

THEOREM linearized_convergence · IndisputableMonolith/Gravity/ReggeConvergence.lean
theorem linearized_convergence : linearized_convergence_proved :=
  linearized_error_estimate
THEOREM linearized_error_estimate · IndisputableMonolith/Gravity/ReggeConvergence.lean
linearized_error_estimate · IndisputableMonolith/Gravity/ReggeConvergence.lean:64
/-- Concrete second-order error bound for the linearized finite-difference limit. -/
theorem linearized_error_estimate (f : ℝ → ℝ) (x a : ℝ) (ha : a ≠ 0)
    (hf : ContDiff ℝ 4 f) :
    ∃ (C : ℝ), 0 ≤ C ∧
      |(f (x + a) + f (x - a) - 2 * f x) / a ^ 2 - deriv (deriv f) x| ≤ C * a ^ 2 := by
  obtain ⟨C₀, _hC₀nn, hC₀⟩ :=
    Foundation.ContinuumLimit.continuum_limit_second_order f x a ha hf
  refine ⟨|C₀|, abs_nonneg _, ?_⟩
  calc
    |(f (x + a) + f (x - a) - 2 * f x) / a ^ 2 - deriv (deriv f) x|
      ≤ C₀ * a ^ 2 := hC₀
    _ ≤ |C₀| * a ^ 2 := by
      exact mul_le_mul_of_nonneg_right (le_abs_self C₀) (sq_nonneg a)
MODEL nonlinear_convergence_with_conditions · IndisputableMonolith/Gravity/ReggeConvergence.lean
nonlinear_convergence_with_conditions · IndisputableMonolith/Gravity/ReggeConvergence.lean:99
/-- Under the special quadratic conditions, the Regge action is assumed to
converge at `O(a^2)`.  Do not cite this as CMS Theorem 5.1; the general CMS
bound is recorded in `Gravity.NonlinearConvergence.cms_theorem_5_1_measure_bound`. -/
def nonlinear_convergence_with_conditions (cond : CMSConditions) : Prop :=
  ∀ (a : ℝ), 0 < a → a < cond.a0_mesh_threshold →
    ∃ (S_Regge S_EH : ℝ),
      |S_Regge - S_EH| ≤ cond.K_curvature_bound * cond.sigma_shape_bound * a ^ 2
THEOREM nonlinear_convergence_with_conditions · IndisputableMonolith/Gravity/ReggeConvergence.lean
nonlinear_convergence_with_conditions · IndisputableMonolith/Gravity/ReggeConvergence.lean:99
/-- Under the special quadratic conditions, the Regge action is assumed to
converge at `O(a^2)`.  Do not cite this as CMS Theorem 5.1; the general CMS
bound is recorded in `Gravity.NonlinearConvergence.cms_theorem_5_1_measure_bound`. -/
def nonlinear_convergence_with_conditions (cond : CMSConditions) : Prop :=
  ∀ (a : ℝ), 0 < a → a < cond.a0_mesh_threshold →
    ∃ (S_Regge S_EH : ℝ),
      |S_Regge - S_EH| ≤ cond.K_curvature_bound * cond.sigma_shape_bound * a ^ 2

What this page does not claim

The certificate does not prove the general nonlinear convergence of the Regge action to the Einstein-Hilbert action. The certificate does not claim that the special quadratic conditions are the same as the general Cheeger-Muller-Schrader theorem hypotheses. The certificate does not establish that the lattice model reproduces black hole interiors or cosmological singularities.

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/Gravity/ReggeConvergence.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:

MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND