PDA

View Full Version : Solving fourth degree polynomial


j-lee00
May1-07, 11:37 AM
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

FrogPad
May1-07, 11:45 AM
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

uart
May1-07, 12:04 PM
General solution:
http://en.wikipedia.org/wiki/Quartic_equation

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

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))

FrogPad
May1-07, 12:43 PM
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
May2-07, 10:47 AM
One serious problem the OP has is that 1-i and 1+ i are NOT roots of
x4-3x3-3x2+2= 0!

If x= 1- i then x4-3x3-3x2+2= 4+ 12i and if x= 1+ i then x4-3x3-3x2+2= 4- 12i, not 0.

uart
May2-07, 11:10 AM
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.

j-lee00
May2-07, 04:37 PM
yes sorry it was a typo but i got the method

thanks