How do you find all the zeros of x5−3x4+5x3+9x2+x−2?
1 Answer
Use a numerical method to find approximations:
x1≈0.390503
x2,3≈2.01006±2.24677i
x4,5≈−0.705308±0.257059i
Explanation:
f(x)=x5−3x4+5x3+9x2+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:
x1≈0.390503
x2,3≈2.01006±2.24677i
x4,5≈−0.705308±0.257059i
I used the following C++ program: