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

SMCancellationHypothesis

definition
show as:
view math explainer →
module
IndisputableMonolith.StandardModel.LongitudinalVectorScattering
domain
StandardModel
line
126 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.StandardModel.LongitudinalVectorScattering on GitHub at line 126.

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

used by

formal source

 123/-- Standard-Model normalisation hypothesis for longitudinal-VV scattering:
 124    in the canonical SM, the scalar-exchange residue exactly cancels the
 125    gauge-exchange residue. -/
 126def SMCancellationHypothesis (a_gauge a_scalar : ℝ) : Prop :=
 127  a_scalar = -a_gauge
 128
 129/-- The SM cancellation hypothesis implies the cancellation condition. -/
 130theorem cancellation_of_SM_hypothesis
 131    (a_gauge a_scalar : ℝ) (h : SMCancellationHypothesis a_gauge a_scalar) :
 132    CancellationCondition a_gauge a_scalar := by
 133  unfold CancellationCondition SMCancellationHypothesis at *
 134  rw [h]; ring
 135
 136/-- Under the SM cancellation hypothesis, the amplitude is bounded. -/
 137theorem amplitude_bounded_under_SM_hypothesis
 138    (a_gauge a_scalar v : ℝ)
 139    (h : SMCancellationHypothesis a_gauge a_scalar) :
 140    ∃ M : ℝ, ∀ s : ℝ, |amplitudeS2 a_gauge a_scalar v s| ≤ M := by
 141  refine ⟨0, ?_⟩
 142  intro s
 143  rw [amplitude_vanishes_under_cancellation a_gauge a_scalar v s
 144        (cancellation_of_SM_hypothesis a_gauge a_scalar h)]
 145  simp
 146
 147/-! ## §4. RS-to-SM Bridge -/
 148
 149/-- The RS Higgs EFT bridge satisfies the cancellation hypothesis exactly
 150    when its scalar-exchange residue is the negative of the gauge residue.
 151
 152    This is the structural statement that the RS theory preserves
 153    longitudinal unitarity.  Concretely: once the canonical-normalisation
 154    map of `HiggsEFTBridge` fixes `Λ(v)`, the scalar coupling fixed by
 155    the J-cost Taylor expansion produces exactly the same residue as in
 156    the SM, with the opposite sign of the gauge residue. -/