Let a , b , c be real numbers satisfying a + 2 b + c = 4 .
Find the maximum value of a b + b c + c a .
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.
@Harsh Shrivastava Nice question with a non-cyclic condition. It could have been improved slightly if a , c were negative, which would throw off a lot of approaches.
Good problem with a good approach, and a great solution :)
a + 2 b + c = 4
( a + b ) + ( b + c ) = 4
now using A M ≥ G M
2 ( a + b ) + ( b + c ) ≥ ( a + b ) ( b + c )
2 ≥ ( a b + b c + a c + b 2 )
squaring both sides, we get
4 ≥ ( a b + b c + a c + b 2 ) ⇒ 4 − b 2 ≥ ( a b + b c + a c )
b 2 ≥ 0 ⇒ 4 − b 2 ≤ 4
thus the maximum value of ( a b + b c + a c ) = 4 and occurs at b = 0 and a = c = 2
There's an issue.You can use AM-GM only if all the quantities are positive reals.
Here it is given that a,b,c are real numbers.
oops didn't think of that
The solution is easy and simple. An appropriate problem to use AM-GM inequality.
a b + b c + c a = b ( a + c ) + c a = b ( 4 − 2 b ) + c a ≤ b ( 4 − 2 b ) + ( 2 c + a ) 2 = b ( 4 − 2 b ) + ( 2 4 − 2 b ) 2 = 4 − b 2 b 2 ≥ 0 ⟹ 4 − b 2 ≤ 4 ⟹ a b + b c + c a ≤ 4 Equality occurs when b = 0 , a = c = 2
Write s=a+c and s=a-c; so the above expression translates to 4 - 1/4[(s-4)^2 - d]; the following expression is maximized when s=4 and d=0. So a=c=2. Hence max value is 4.
Problem Loading...
Note Loading...
Set Loading...
Substituting b = 2 − 2 1 ( a + c ) , we have a b + a c + b c = 4 − 2 1 ( a − 2 ) 2 − 2 1 ( c − 2 ) 2 so the maximum value of a b + a c + b c , subject to a + 2 b + c = 4 , is 4 , achieved when a = c = 2 , b = 0 .