How do you find all the zeros of #-9x^4 + 3x^3 - 7x^2 + 7x - 9 = 0#?

1 Answer
May 8, 2016

See explanation...

Explanation:

#f(x) = -9x^4+3x^3-7x^2+7x-9#

By the rational root theorem, any rational zeros of #f(x)# are expressible in the form #p/q# for integers #p#, #q# with #p# a divisor of the constant term #-9# and #q# a divisor of the coefficient #-9# of the leading term.

That means that the only possible rational zeros are:

#+-1/9#, #+-1/3#, #+-1#, #+-3#, #+-9#

In addition, note that #f(-x) = -9x^4-3x^3-7x^2-7x-9# has all negative coefficients, so there are no negative zeros.

So the only possible rational zeros are:

#1/9, 1/3, 1, 3, 9#

Evaluating #f(x)# for these values we find that none of them are zeros. So #f(x)# has only irrational and/or Complex zeros.

At this stage we have two main choices. We can seek an algebraic solution, which is doable, but lengthy and complicated. Alternatively, we can seek a numerical solution.

One simple method to seek numerical values for the zeros is Newton's:

  • Start with an approximation #a_0# for the zero of #f(x)#.

  • Refine the approximation using the formula:

    #a_(i+1) = a_i - (f(x))/(f'(x))#

  • Repeat until you get the desired numerical accuracy.

In our example:

#f'(x) = -36x^3+9x^2-14x+7#

So our iterative step is:

#a_(i+1) = a_i - (-9x^4+3x^3-7x^2+7x-9)/(-36x^3+9x^2-14x+7)#

#=a_i - (9x^4-3x^3+7x^2-7x+9)/(36x-9x^2+14x-7)#

The slight complication is that the zeros we are looking for are all non-Real Complex ones, so to use this formula in a spreadsheet (which typically do not understand Complex numbers), you need to split the Real and imaginary parts into separate columns and express the Complex arithmetic in terms of those parts.

This takes a little patience to set up, but once you have it, you can try different initial approximations, #a_0# easily to find zeros:

#x~~-0.48389+-0.98869i#

#x~~0.65056+-0.63411i#