theorem
proved
amplitude_bounded_under_SM_hypothesis
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.StandardModel.LongitudinalVectorScattering on GitHub at line 137.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
-
of -
bridge -
canonical -
of -
cost -
cost -
is -
of -
as -
is -
of -
is -
canonical -
of -
is -
map -
canonical -
that -
M -
M -
Bridge -
amplitudeS2 -
amplitude_vanishes_under_cancellation -
cancellation_of_SM_hypothesis -
SMCancellationHypothesis
used by
formal source
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. -/
157def RSPreservesLongitudinalUnitarity (a_gauge a_scalar_RS : ℝ) : Prop :=
158 a_scalar_RS = -a_gauge
159
160/-- If RS preserves longitudinal unitarity, the cancellation holds. -/
161theorem cancellation_of_RS_preservation
162 (a_gauge a_scalar_RS : ℝ)
163 (h : RSPreservesLongitudinalUnitarity a_gauge a_scalar_RS) :
164 CancellationCondition a_gauge a_scalar_RS :=
165 cancellation_of_SM_hypothesis a_gauge a_scalar_RS h
166
167/-! ## §5. Master Bridge Certificate -/