IMO 2000 Q2 #
Let A, B, C be positive reals with ABC = 1. Prove that
(A - 1 + 1 / B)(B - 1 + 1 / C)(C - 1 + 1 / A) ≤ 1.
Solution #
We follow the first solution from https://artofproblemsolving.com/wiki/index.php?title=2000_IMO_Problems/Problem_2.
We parametrize A = x / y, B = y / z, C = z / x where x, y, z > 0.
This reduces the problem to proving (x - y + z)(y - z + x)(z - x + y) ≤ 8xyz.
We then reparametrize x = q + r, y = r + p, z = p + q where p, q, r ∈ ℝ,
which transforms the inequality to 8pqr ≤ (q + r)(r + p)(p + q).
The proof splits into cases based on the signs of p, q, r.
When all are positive, AM-GM gives the result.
When at least one is negative or zero, the inequality is verified by sign analysis.
Implementation notes #
- The inequality is reduced via
A = x / y,B = y / z,C = z / x, then the substitutionx = q + r,y = r + p,z = p + q. - Helper lemmas prove
8pqr ≤ (p + q)(r + p)(q + r)by AM-GM whenp, q, r > 0and by sign analysis otherwise; the main proof closes withgrind.