Let $a,b,c$ be the roots of $x^3 - x - 1= 0$ find $a^5 + b^5 + c^5$

1.2k Views Asked by At

Consider a cubic polynomial $x^3 - x - 1 = 0$ I want the sum of the fifth powers of the roots $\sum a^5$. I know that

\begin{eqnarray*} a + b + c &=& 0 \\ ab + bc + ca &=& 1 \\ -abc &=& 1 \end{eqnarray*}

but I have no way of combining this information into the answer.

2

There are 2 best solutions below

2
On

$a^3=a+1$ implies that $a^5=a^3+a^2=a+1+a^2$.

$a^5+b^5+c^5=3+a+b+c+a^2+b^2+c^2=3+(a+b+c)^2-2(ab+ac+bc)=5$.

1
On

About finding general $a^n + b^n + c^n,$ there is an elementary aspect to this, although not necessarily what you want. You already know that $a+b+c = 0,$ and the other answer gives enough to find $a^2 + b^2 + c^2$ and $a^3 + b^3 + c^3.$ Call those $x_1, x_2, x_3,$ then solve in perpetuity with $$ x_{n+3} = x_{n+1} + x_n $$

Two errors in the question, $$ bc + ca + ab = -1, $$ $$ abc = 1. $$

So far, I get $$ x_1 = 0,$$ $$ x_2 = 2,$$ $$ x_3 = 3,$$ $$ x_4 = 2,$$ $$ x_5 = 5,$$ $$ x_6 = 5,$$ $$ x_7 = 7,$$ $$ x_8 = 10,$$ $$ x_9 = 12,$$ $$ x_{10} = 17,$$

Since the real root of $x^3 - x - 1$ is slightly larger than $1,$ the numbers increase, are positive and so on. The two complex roots are smaller than $1$ in modulus, so, for large $n,$ we get $x_n \approx R^n$ where $R \approx 1.3247$ is the real root. For example, $R^{10} \approx 16.643$

compared with pari:

parisize = 4000000, primelimit = 500509
? p = polroots( x^3 - x - 1 )
%1 = [1.324717957244746025960908855 + 0.E-28*I, -0.6623589786223730129804544272 - 0.5622795120623012438991821449*I, -0.6623589786223730129804544272 + 0.5622795120623012438991821449*I]~
? p[1]
%2 = 1.324717957244746025960908855 + 0.E-28*I
? p[2]
%3 = -0.6623589786223730129804544272 - 0.5622795120623012438991821449*I
? a = p[2]
%4 = -0.6623589786223730129804544272 - 0.5622795120623012438991821449*I
? b = p[3]
%5 = -0.6623589786223730129804544272 + 0.5622795120623012438991821449*I
? c = p[1]
%6 = 1.324717957244746025960908855 + 0.E-28*I
? a + b + c
%7 = 0.E-28 + 0.E-28*I
? a^2 + b^2 + c^2
%8 = 2.000000000000000000000000000 + 0.E-28*I
? a^3 + b^3 + c^3
%9 = 3.000000000000000000000000000 + 0.E-28*I
? a^4 + b^4 + c^4
%10 = 2.000000000000000000000000000 + 0.E-28*I
? a^5 + b^5 + c^5
%11 = 5.000000000000000000000000000 + 0.E-27*I
? 
? a * b * c
%12 = 0.9999999999999999999999999999 + 0.E-28*I
? b * c + c * a + a * b
%13 = -1.000000000000000000000000000 + 0.E-28*I
?