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

gr_limit_cov

proved
show as:
view math explainer →
module
IndisputableMonolith.Relativity.ILG.Action
domain
Relativity
line
89 · github
papers citing
none yet

open explainer

Read the cached plain-language explainer.

open lean source

IndisputableMonolith.Relativity.ILG.Action on GitHub at line 89.

browse module

All declarations in this module, on Recognition.

explainer page

A cached Ask Recognition explainer exists for this declaration.

open explainer

depends on

formal source

  86  S_EH g + L_cov g ψ p
  87
  88/-- GR-limit for S_total_cov (α=0, C_lag=0). -/
  89theorem gr_limit_cov (g : Metric) (ψ : RefreshField) :
  90  S_total_cov g ψ { alpha := 0, cLag := 0 } = S_EH g := by
  91  unfold S_total_cov L_cov L_kin L_mass L_pot L_coupling
  92  simp
  93
  94/-- Convenience total action using bundled params. -/
  95noncomputable def S_total (g : Metric) (ψ : RefreshField) (p : ILGParams) : ℝ :=
  96  S_EH g + PsiAction g ψ p.cLag p.alpha
  97
  98/-- ψ-sector action using bundled parameters. -/
  99noncomputable def PsiActionP (g : Metric) (ψ : RefreshField) (p : ILGParams) : ℝ :=
 100  PsiKinetic g ψ p.alpha + PsiPotential g ψ p.cLag
 101
 102/-! Euler-Lagrange predicates moved to ILG/Variation.lean (now use real equations).
 103    EL_g and EL_psi now defined in Variation.lean with actual PDEs. -/
 104
 105/-- Consolidated bands schema for observables (scaffold). -/
 106structure Bands where
 107  κ_ppn : ℝ
 108  κ_lensing : ℝ
 109  κ_gw : ℝ
 110  h_ppn : 0 ≤ κ_ppn
 111  h_lensing : 0 ≤ κ_lensing
 112  h_gw : 0 ≤ κ_gw
 113
 114/-- Map ILG parameters to a bands schema (toy: proportional to |C_lag·α|). -/
 115noncomputable def bandsFromParams (p : ILGParams) : Bands :=
 116  let κ := |p.cLag * p.alpha|
 117  { κ_ppn := κ, κ_lensing := κ, κ_gw := κ
 118  , h_ppn := by exact abs_nonneg _
 119  , h_lensing := by exact abs_nonneg _