theorem
proved
term proof
partialWidth_nonneg
show as:
view Lean formalization →
formal statement (Lean)
61theorem partialWidth_nonneg (amp phaseSpace : ℝ) (hps : 0 ≤ phaseSpace) :
62 0 ≤ partialWidth amp phaseSpace := by
proof body
Term-mode proof.
63 unfold partialWidth
64 have hamp2 : 0 ≤ amp ^ 2 := sq_nonneg _
65 exact mul_nonneg hps hamp2
66
67/-- Two partial widths matched when both amplitudes and phase-space factors
68 agree. -/