theorem
proved
term proof
operator_positivity_pointwise
show as:
view Lean formalization →
formal statement (Lean)
100theorem operator_positivity_pointwise (w_val f_val : ℝ) (hw : 1 ≤ w_val) :
101 f_val ^ 2 ≤ w_val * f_val ^ 2 := by
proof body
Term-mode proof.
102 nlinarith [sq_nonneg f_val]
103
104/-- Operator positivity implies the energy functional is bounded below. -/