How do you find all the zeros of #x^5 - 3x^4 + 5x^3 + 9x^2 + x - 2#?
1 Answer
Use a numerical method to find approximations:
#x_1 ~~ 0.390503#
#x_(2,3) ~~ 2.01006+-2.24677i#
#x_(4,5) ~~ -0.705308+-0.257059i#
Explanation:
#f(x) = x^5-3x^4+5x^3+9x^2+x-2#
By the rational root theorem, any rational zeros of
So the only possible rational zeros are:
#+-1# ,#+-2#
Neither of these is a zero, so
In common with quintics in general, this
We can find rational approximations using a numeric method such as Durand-Kerner. For another example of such a quintic solution, see: https://socratic.org/s/avdSNDdg
In the current example we find approximations:
#x_1 ~~ 0.390503#
#x_(2,3) ~~ 2.01006+-2.24677i#
#x_(4,5) ~~ -0.705308+-0.257059i#
I used the following C++ program: