theorem
proved
term proof
minimal_coefficients
show as:
view Lean formalization →
formal statement (Lean)
69theorem minimal_coefficients :
70 ∀ a b : ℕ, 1 ≤ a → 1 ≤ b → 2 ≤ a + b :=
proof body
Term-mode proof.
71 fun _ _ ha hb => by omega
72
73/-- (1,1) achieves the minimum. -/