practice problems pending

Q1. (a, b, c) are real numbers such that a+b+c=0, and a^2+b^2+c^2=1. Find the greatest value of a^2*b^2*c^2.
S1.

First a wrong approach:
AM GM on a^2,b^2,c^2
=> (a^2 + b^2 + c^2)/3 >= (abc)^(2/3)
Cube on both sides => (abc)^2 <= 1/27
And equality when a^2 = b^2 = c^2 = 1/3
a+b+c = 0 => WLOG a,b>0 and c<0 => a=b=1/sqrt(3) and c = -1/sqrt(3) but that doesn't satisfy a+b+c = 0 so this this wrong.


WLOG
a,b > 0 and c <0
c^2 = a^2 + b^2 + 2ab
1 = a^2 + b^2 + c^2 = a^2 + b^2 + a^2 + b^2 + 2ab = 2(a^2 + b^2 + ab)
=> a^2 + b^2 + ab = 1/2
AM GM on 
a^2 ,b^2 ,ab => (a^2 + b^2 + ab)/3 >= ab => 1/6 >= ab => ab <= 1/6 and equality on a^2 = b^2 = 1/6
c^2 = a^2 + b^2 + 2ab = 1/2 + ab => c^2 <= 1/2 + 1/6 = 2/3
a^2*b^2*c^2 <= 1/36 * 2/3 = 1/54 = answer.




Comments