A four-variable triple quadratic ratio sum is at least four
ProvedWorkbookSource.base_17392lean-workbooksource-checked
Let -reals positive numbers. Prove inequality:
Source: InternLM Lean-Workbook, record lean_workbook_17392 (Apache-2.0). Complete source proposition preserved; proof developed independently.
Preamble
import Mathlib open Real Nat
Formal statement
theorem WorkbookSource.base_17392 (a b c d : ℝ) (ha : 0 < a) (hb : 0 < b) (hc : 0 < c) (hd : 0 < d) : (a^2 + b^2 + c^2) / (a * b + b * c + c * d) + (b^2 + c^2 + d^2) / (b * c + c * d + d * a) + (a^2 + c^2 + d^2) / (a * b + a * d + c * d) + (a^2 + b^2 + d^2) / (a * b + a * d + b * c) ≥ 4 := by sorry
Source