Given
{ a , b , c , d > 0 a b + b c + c d + d a = 1 ,
k is the largest number such that
2 b d a 3 + c 3 + 2 a c b 3 + d 3 ≥ k .
Equality is reached when a = a eq , b = b eq , c = c eq , d = d eq .
Find a eq + b eq + c eq + d eq + k and round it to 3 decimal places.
Original.
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
My answer was also 2.5 but but the line "ROUND UPTO 3 DECIMAL PLACE" spoiled my confidence. :(
Note that ab+bc+cd+da=(a+c) (b+d)=1,so 1/(a+c)=b+d and 1/(b+d)=a+c so you can write second row expression as (a^3+c^3) (a+c)+(b^3+d^3) (b+d) >=2 (ac)^1.5x2x(ac)^0.5+2x(bd)^1.5x(bd)^0.5=4((ac)^2+(bd)^2)>=8abcd so max is reached for a=b=c=d=0.5 and k=8x0.0625=0.5 so answer is 2.5. there is no need for hard inequality as C-S,just AM-GM inequality...
(a^3+c^3)/2 >=(ac)^3/2 (AM-GM),similiar with b and d
That means that (a^3+c^3)/(2(bd)^0.5)+(b^3+d^3)/(2(ac)^0.5)>=
(ac)^1.5/(bd)^0.5+(bd)^1.5/(ac)=((ac)^2+(bd)^2)/(abcd)^0.5>=2(abcd)^0.5
1/4= (ab+bc+cd+da)/4>abcd (AM-GM) so abcd is max 0.0625 when a=b=c=d=0.5 so our inequality is
=2*0.0625^0.5=0.5
Equality: a=c,b=d for first use of AM-GM,ac=bd for second and a=b=c=d for last
That means a=b=c=d=0.5=k, so a+b+c+d+k=2.500
Problem Loading...
Note Loading...
Set Loading...
First, we know that a 2 + b 2 + c 2 + d 2 ≥ a b + b c + c d + d a ⟺ ( a − b ) 2 + ( b − c ) 2 + ( c − d ) 2 + ( d − a ) 2 ≥ 0
We'll use this fact in our proof.
2 b d a 3 + c 3 + 2 a c b 3 + d 3 ≥ AM-GM b + d a 3 + c 3 + a + c b 3 + d 3 = b + d a 3 + a + c b 3 + b + d c 3 + a + c d 3 = a b + d a a 4 + a b + a c b 4 + b c + c d c 4 + d a + c d d 4 ≥ Cauchy-Schwarz 2 ( a b + b c + c d + d a ) ( a 2 + b 2 + c 2 + d 2 ) 2 ≥ 2 ( a b + b c + c d + d a ) ( a b + b c + c d + d a ) 2 = 2 1
The only possible case of equality in a 2 + b 2 + c 2 + d 2 ≥ a b + b c + c d + d a is when a = b = c = d .
If a = b = c = d , then b + d a 3 + c 3 + a + c b 3 + d 3 = 2 ⋅ 2 a 2 a 3 = 2 a 2
And this is equal to 2 1 if and only if a = 2 1 .
Hence, k = 2 1 and equality occurs if and only if a eq = b eq = c eq = d eq = 2 1 , all adding up to 2 . 5 .
This problem is original, but I thought of it while solving this . They are still very different problems with different methods, though.