2022-05-30 18:49:06 +0100 | received badge | ● Popular Question (source) |
2017-12-07 10:42:23 +0100 | received badge | ● Student (source) |
2017-12-07 09:18:27 +0100 | asked a question | Change Precision on complex_roots() I am trying to find the complex roots of the polynomial poly = x^7 - 6x^6 + 15x^5 - 20x^4 + 15x^3 - 6*x^2 + x But when I do poly.complex_roots(), the system gives: Apparently there are options for how much precision you want when computing roots -- one option is to use Pari, which is the high-precision option, and the other NumPy, which is the low-precision option. The default is set to use Pari, which apparently overloads when I try to compute the roots of this polynomial (and many others as well, this polynomial is just one example). How do I change the complex_roots() function to get lower-precision roots? Alternatively, how do I deal with the PariError? |
2017-12-07 09:18:27 +0100 | asked a question | Change Precision of complex_roots() I am trying to find the complex roots of the polynomial But when I do poly.complex_roots(), the system gives: Apparently there are options for how much precision you want when computing roots -- one option is to use Pari, which is the high-precision option, and the other NumPy, which is the low-precision option. The default is set to use Pari, which apparently overloads when I try to compute the roots of this polynomial (and many others as well, this polynomial is just one example). How do I change the complex_roots() function to get lower-precision roots? |