a , b and c are real numbers satisfying 3 a + 2 b + c = 7 . Find the minimum value of
a 2 + b 2 + c 2 .
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.
short and simple solution. Up voted.
Using Cauchy-Schwarz inequality :
( 3 a + 2 b + c ) 2 7 2 ⟹ a 2 + b 2 + c 2 ≤ ( 3 2 + 2 2 + 1 2 ) ( a 2 + b 2 + c 2 ) ≤ 1 4 ( a 2 + b 2 + c 2 ) ≥ 2 7 = 3 . 5
Did the exact same thing
Awesome!!!!
Let i,j,k be three Non coplanar unit vectors along x,y,z axis.
Consider two vectors
A = ai+bj+ck
B = 3i+2j+k
Taking dot product
A.B = 3a+2b+c = 7
We know that A.B = mod(A).mod(B).cos(x)
where x is angle between A And B
We need to minimise mod B hence we take cosx = 1
Doing this we get required answer
Essentially a proof of Cauchy-Schwarz! +1
Using Lagrange Multipliers, let f ( a , b , c ) = a 2 + b 2 + c 2 and g ( a , b , c ) = 3 a + 2 b + c = 7 such that g r a d ( f ) = λ ⋅ g r a d ( g ) . This yields the system:
2 a = λ ⋅ 3 ;
2 b = λ ⋅ 2 ;
2 c = λ ⋅ 1 ;
or b = 3 2 a , c = 3 c ⇒ 3 a + 2 ( 3 2 a ) + 3 a = 7 ⇒ a = 2 3 , b = 1 , c = 2 1 .
Now the Hessian matrix of f ( a , b , c ) , F ( a , b , c ) , is just F = 2 ⋅ I 3 x 3 (where I 3 x 3 is the 3x3 identity matrix), which is positive-definite for all ( a , b , c ) . Hence the minimum value is f ( 2 3 , 1 , 2 1 ) = ( 2 3 ) 2 + 1 2 + ( 2 1 ) 2 = 2 7 .
Problem Loading...
Note Loading...
Set Loading...
Consider a plane 3 x + 2 y + z = 7 , And ( a , b , c ) be any point lying on it . So we have to find the square of the minimum distance of the plane from the origin.
Which is equal to ( 7 / √ 1 4 ) 2 = 7 / 2 = 3 . 5