theorem
proved
term proof
additive_decomposition
show as:
view Lean formalization →
formal statement (Lean)
25theorem additive_decomposition {n : ℕ} (α ε : Vec n) :
26 additiveQuadratic ε
27 = multiplicativeQuadratic α ε + compensatoryQuadratic α ε := by
proof body
Term-mode proof.
28 unfold compensatoryQuadratic
29 ring
30
31/-- Squared Cauchy-Schwarz bound in our notation. -/