Complex roots of a 7th degree polynomial

Algebra Level 3

Consider the equation

x 7 + x 6 + x 5 + x 4 + x 3 + x 2 + x + 1 = 0. x^7+x^6+x^5+x^4+x^3+x^2+x+1=0.

Let x k x_k be the k th k^\text{th} distinct root of the equation, and let ( x k ) \Re(x_k) be the real part of that root. Then

k = 1 7 [ ( x k ) ] 2 = ? \sum_{k=1}^7{\big[\Re(x_k)\big]^2}=\, ?


The answer is 3.

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.

2 solutions

Andy Hayes
May 6, 2016

Relevant wiki: Roots of Unity

The given polynomial is a finite geometric progression . It can be rewritten as:

x 8 1 x 1 = 0 \frac{x^8-1}{x-1}=0 Alternatively, x 8 1 = 0 , x 1 x^8-1=0\text{, }x\ne1

Thus, the solutions of the equation will be all the 8 th ^\text{th} roots of unity except for 1 1 .

These solutions are found with x k = e 2 k π i / 8 x_k=e^{2k\pi i/8} for k = 1 , 2 , 3 , 4 , 5 , 6 , 7 k=1,2,3,4,5,6,7 .

On the complex plane, these solutions are located on the unit circle in π 4 \frac{\pi}{4} increments:

The problem asks to find the sum of the squares of the real parts. There are four solutions in which the square of the real part is 1 2 \frac{1}{2} , and there is one solution in which the square of the real part is 1 1 . The remaining two solutions do not have real parts.

Thus, the sum of the squares of the real parts is 3 \boxed{3} .

It would be better to solve by using polynomials method sum of roots product of roots

ankit raj - 1 year, 6 months ago
Suneesh Jacob
May 9, 2016

matlab code:

y=roots(ones(1,8));

x=real(y);

sum=0;

for i=1:size(x,1)

sum=sum+((x(i,1))^2);

end

sum

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...