Solving an equation in 4th degree

  • Thread starter Thread starter zorro
  • Start date Start date
  • Tags Tags
    Degree
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
7 replies · 21K views
zorro
Messages
1,378
Reaction score
0

Homework Statement


How to solve x4 + x3 + x2 + x + 1= 0 ?
 
Physics news on Phys.org
Yes, I tried it but it did not work. Ferrari's method looks good.
 
it IS good! :biggrin: (sure shot solution guaranteed)
 
[itex]x^4+ x^3+ x^2+ x+ 1[/itex] is a "cyclotomic" polynomial whose zeros are equally spaced around the unit circle in the complex plane.

One way to solve this is to convert it to a 5th degree equation (for which there is no general formula!). Multiplying [itex]x^4+ x^3+ x^2+ x+ 1= 0[/itex] by x- 1 gives [itex](x- 1)(x^4+ x^3+ x^2+ x+ 1)= (x^5+ x^4+ x^3+ x)[/itex][itex]- (x^4+ x^3+ x+ 1)= x^5- 1= 0[/itex].

Now, the roots of [itex]x^5- 1= 0[/itex] are the complex numbers [itex]e^{2\pi ki/5}[/itex] where k goes from 0 to 4. Obviously, k= 0 gives [itex]x= 1[/itex] which statisfies x- 1= 0 but not [itex]x^4+ x^3+ x^2+ 1= 0[/itex] so the roots of [itex]x^4+ x^3+ x^2+ x+ 1[/itex] are
[itex]e^{2\pi ki/5}= cos(\frac{2\pi k}{5})+ i sin(\frac{2\pi k}{5})[/itex]
for k= 1, 2, 3, and 4.
 
I like HallsOfIvy's solution, but just for variety here is another approach.

Divide by [tex]x^2[/tex], yielding

[tex]x^2 + x + 1 + x^{-1} + x^{-2} = 0[/tex].

Now let [tex]y = x + x^{-1}[/tex].

With this substitution, the equation becomes

[tex]y^2 + y - 1 = 0[/tex].

Solve for y (two roots), then solve for x (four roots).
 
nice one awkward...HallsofIvy has an nice solution too(one i never thought of)...
 
Divide by LaTeX Code: x^2 , yielding

LaTeX Code: x^2 + x + 1 + x^{-1} + x^{-2} = 0 .

Now let LaTeX Code: y = x + x^{-1} .

With this substitution, the equation becomes

LaTeX Code: y^2 + y - 1 = 0 .

Solve for y (two roots), then solve for x (four roots).

That is a very ingenious solution. Thanks.