Solving fourth degree polynomial

  • Context: Undergrad 
  • Thread starter Thread starter j-lee00
  • Start date Start date
  • Tags Tags
    Degree Polynomial
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
6 replies · 18K views
j-lee00
Messages
93
Reaction score
0
Here it is

(x^4)-(3x^3)-(3x^2)+2 = 0

Two solutions are

x = 1 - i
x = 1 + i

How can i find the other solutions, (not graphically)

Thanks
 
Mathematics news on Phys.org
j-lee00 said:
Here it is

(x^4)-(3x^3)-(3x^2)+2 = 0

Two solutions are

x = 1 - i
x = 1 + i

How can i find the other solutions, (not graphically)

Thanks

General solution:
http://en.wikipedia.org/wiki/Quartic_equation

Numerical method:
http://en.wikipedia.org/wiki/Newton's_method
 
FrogPad said:
General solution:
http://en.wikipedia.org/wiki/Quartic_equation

Numerical method:
http://en.wikipedia.org/wiki/Newton's_method[/QUOTE]

There's no need for that. OP already has two of the roots so all that's required is to divide the original quartic by (x^2 - 2x + 2) and factorize the resultant quadratic.

BTW. (x^2 - 2x + 2) = (x-(1+i)) (x-(1-i))
 
Last edited by a moderator:
uart said:
There's no need for that. OP already has two of the roots so all that's required is to divide the original quartic by (x^2 - 2x + 2) and factorize the resultant quadratic.

BTW. (x^2 - 2x + 2) = (x-(1+i)) (x-(1-i))

good call.
 
HallsofIvy said:
One serious problem the OP has is that 1-i and 1+ i are NOT roots of
x4-3x3-3x2+2= 0!

Oh yeah you're right. I just took his word for that and didn't check it.

My guess is that OP was given the two roots as part of the problem and has made a typo error in posting the equation.
 
yes sorry it was a typo but i got the method

thanks