You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello! I need to find roots of s.c. 0,1 - polynomials with high degrees many times.
More exactly I need just number of real roots, see detailed here.
Which package is the most suitable for it?
The text was updated successfully, but these errors were encountered:
So, Polynomial.roots will not be suitable for degrees above 50 or so, if even. The AMRVW package can do much better, but for your problem a specialized algorithm is likely the way to go. The RealPolynomialRoots package is intended to this, but doesn't scale to large polynomials well, as it doesn't have some more asymptotically efficient algorithms implemented (just naive ones). So... I'd suggest trying Nemo (https://nemocas.github.io/Nemo.jl/v0.13/polynomial.html#Root-finding-1) which uses the arb library under the hood and has the isolating algorithms you likely need.
Hello! I need to find roots of s.c. 0,1 - polynomials with high degrees many times.
More exactly I need just number of real roots, see detailed here.
Which package is the most suitable for it?
The text was updated successfully, but these errors were encountered: