A cyclic pair-product reciprocal sum bounds the quadratic sum at fixed total four
ProvedWorkbookSource.base_24784lean-workbooksource-checked
Let be positive numbers sach that . Prove that .
Source: InternLM Lean-Workbook, record lean_workbook_24784 (Apache-2.0). Complete source proposition preserved; proof developed independently.
Preamble
import Mathlib open Real Nat
Formal statement
theorem WorkbookSource.base_24784 (a b c d : ℝ) (h : a + b + c + d = 4) (ha : 0 < a) (hb : 0 < b) (hc : 0 < c) (hd : 0 < d) : 1 / (a * b) + 1 / (b * c) + 1 / (c * d) + 1 / (d * a) ≥ a ^ 2 + b ^ 2 + c ^ 2 + d ^ 2 := by sorry
Source