Ask Question
27 December, 13:37

Find the roots of the equation f (x) = x3 - 0.2589x2 + 0.02262x - 0.001122 = 0

+3
Answers (1)
  1. 27 December, 15:39
    0
    x1 = 0.16203454

    x2 = 0.04843273+0.06766624j

    x3 = 0.04843273-0.06766624j

    Step-by-step explanation:

    The better way to obtain roots of a polynomial when is not easy to analytically factorize is to use software as Matlab or Python. Use the following code in Python

    import numpy as np

    pol=np. array ([1,-0.2589, 0.02262,-0.001122])

    roots=np. roots (pol)

    print (roots)
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “Find the roots of the equation f (x) = x3 - 0.2589x2 + 0.02262x - 0.001122 = 0 ...” in 📘 Mathematics if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers