Asymmetric Inequality

Let $a, b, c$ be positive real numbers such that $\frac{1}{a} + \frac{1}{b} + \frac{1}{c} = 1$. Show that $$a + b + c \le \sqrt{b ^ 3 + a c ^ 2 + a ^ 2 c}.$$

_Replace_ `sorry` _in the template below with your solution. Mathlib version used by the checker is v4.28.0_.

import Mathlib.Data.Real.Sqrt

theorem solution (a b c : ℝ) (ha : a > 0) (hb : b > 0) (hc : c > 0)
    (h : 1 / a + 1 / b + 1 / c = 1) : a + b + c ≤ √ (b ^ 3 + a * c ^ 2 + a ^ 2 * c) := sorry

Submit Solution

Login to submit a solution.

Recent Submissions

# User Time (UTC) Status
32 kappa Long time ago PASSED
30 cwrv Long time ago PASSED
29 cwrv Long time ago PASSED
28 cwrv Long time ago Compilation error
27 Kitsune Long time ago PASSED
View all