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

Bands

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

open explainer

Generate a durable explainer page for this declaration.

open lean source

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

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

 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 _
 120  , h_gw := by exact abs_nonneg _ }
 121
 122/-! Symbolic Einstein equations moved to Variation/Einstein.lean.
 123    VacuumEinstein now defined with real G_μν = 0. -/
 124
 125/-- Bundle the action inputs `(g, ψ)` for convenience in downstream modules. -/
 126abbrev ActionInputs := Metric × RefreshField
 127
 128/-- Apply total action on bundled inputs. -/
 129noncomputable def S_on (inp : ActionInputs) (p : ILGParams) : ℝ :=
 130  S_total inp.fst inp.snd p
 131
 132/-- Full ILG action: S[g, ψ; C_lag, α] := S_EH[g] + S_ψ[g,ψ]. -/
 133noncomputable def S (g : Metric) (ψ : RefreshField) (C_lag α : ℝ) : ℝ :=
 134  S_EH g + PsiAction g ψ C_lag α
 135
 136/-- GR-limit reduction: when C_lag = 0 and α = 0, the ψ-sector vanishes. -/