A sum-of-squares upper bound from a reciprocal difference constraint
ProvedWorkbookCorrected.plus_41062corrected-formalizationlean-workbooksource-checked
Let and Prove that
Formalization Note: The original formalization added abc=1, which is absent from the source. This correction removes that extra hypothesis and proves the source upper bound using a,b,c≥1 and the reciprocal relation alone.
Source: InternLM Lean-Workbook, record lean_workbook_plus_41062 (Apache-2.0).
Preamble
import Mathlib
Formal statement
theorem WorkbookCorrected.plus_41062 (a b c : ℝ) (ha : 1≤a) (hb : 1≤b) (hc : 1≤c)
(h : a+b+c=1/a+1/b+1/c+6) : a^2+b^2+c^2 ≤ 21+6*Real.sqrt 10 := by sorrySource