Given positive reals a , b , c , d , e , f with d = e = f , if the following equations don't have a solution in x , y , z :
a x + b y + c z = d
b x + c y + a z = e
c x + a y + b z = f
Then what is the value of
b + c a + c + a b + a + b c ?
Bonus: if a , b , c are non-zero reals with a = b = c and the other constraints are maintained, then what is the value of the given sum?
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.
You could factorize Chris : a 3 + b 3 + c 3 − 3 a b c = ( a + b + c ) ( a 2 + b 2 + c 2 − a b − b c − c a ) , and use the logic.
Log in to reply
True - I just wanted to show the steps to finding that factorisation (I'm not good at remembering higher degree factorisations so usually have to derive them - I find symmetric polynomials quite a good way to do that). But I agree if it's a factorisation you know you can skip some steps.
Was this your approach?
Just set a=b=c and you'll get it. (BETTER SOLUTION NEEDED)
Problem Loading...
Note Loading...
Set Loading...
For the equations not to have a solution, the coefficient matrix ⎝ ⎛ a b c b c a c a b ⎠ ⎞
must be singular - ie its determinant must be zero; that is 3 a b c = a 3 + b 3 + c 3
This equation is symmetric in a , b , c , so it makes sense to define u = a + b + c , v = b c + c a + a b , w = a b c (symmetric polynomials). Rewriting the above equation, we find u ( u 2 − 3 v ) = 0
Since in the problem, a , b , c are all positive, we can't have u = 0 ; therefore u 2 = 3 v .
Expanding this out again, we get a 2 + b 2 + c 2 = b c + c a + a b
We can treat this as a quadratic in the variable c ; solving, we find c = 2 a + b ± ( a + b ) 2 − 4 ( a 2 + b 2 − a b ) = 2 a + b ± − 3 a 2 + 6 a b − 3 b 2 = 2 a + b ± 3 − ( a − b ) 2
This only has a real solution when a = b = c . Hence the only value the sum in the question can take is 2 3 .
For the bonus question (where a , b , c are real, non-zero and distinct - not necessarily positive), u 2 = 3 v is impossible (since a , b , c are real and distinct); but we can now have u = 0 . In this case, each term of the sum is − 1 so the sum itself is − 3 (for example, take a = 1 , b = 2 , c = − 3 ).