Saturday, March 17, 2018

algebra precalculus - Polynomial with real roots



Consider the polynomial: f=X4+4X3+6X2+aX+b
We know that f has four real roots. Let x1,x2,x3,x4 be the roots of this polynomial. How can one compute x20151+x20152+x20153+x20154?
If a=4 and b=1, we obtain a self-reciprocal (palindromic) polynomial. We can write f=(X+1)4, thus x1=x2=x3=x4=1. Hence the sum computes to 4.
Are there any other cases to consider (a,b)? I thought using the formula for the quartic equation and paying attention to the cases where we have only real roots.

Any ideas? Thank you!


Answer



We know the following to be true:



x1+x2+x3+x4=4
x1x2+x2x3+x3x4+x4x1+x1x3+x2x4=6

x1x2x3+x2x3x4+x3x4x1+x4x1x2=a
x1x2x3x4=b



Now we can square (1) to get



(x1+x2+x3+x4)2=x21+x22+x23+x24+2[x1x2+x2x3+x3x4+x4x1+x1+x3+x2x4]



Substituting in values from (1) gives



(4)2=x21+x22+x23+x24+2(6)16=x21+x22+x23+x24+124=x21+x22+x23+x24



Using the Cauchy-Schwartz Inequality, we get



(x21+x22+x23+x24)(12+12+12+12)(x1+x2+x3+x4)2



where equality holds when



x1=x2=x3=x4



Thus, the equality condition holds, because 44=(4)2. So from (1) and (5), we have x1=x2=x3=x4=1




Setting the values of x1=x2=x3=x4=1 in (3) and (4), we get (a,b)=(4,1), which is thus the unique solution. So we can evaluate the sum as



x20151+x20152+x20153+x20154=(1)+(1)+(1)+(1)=4


No comments:

Post a Comment

analysis - Injection, making bijection

I have injection f:AB and I want to get bijection. Can I just resting codomain to f(A)? I know that every function i...