[sympy] Why isn't SymPy able to solve this polynomial equation?

2013-01-09 Thread Shriramana Sharma
Please observe. The durand-kerner module is my own home-built version based on some C++ code I saw on the net. In [1]: from durandkerner_1 import durandkerner ...: from sympy import solve ...: from sympy . abc import x ...: from mpmath import polyroots, nprint ...: In [2]: solve ( x *

Re: [sympy] Why isn't SymPy able to solve this polynomial equation?

2013-01-09 Thread Aaron Meurer
On Jan 9, 2013, at 10:23 AM, Shriramana Sharma wrote: > Please observe. The durand-kerner module is my own home-built version > based on some C++ code I saw on the net. > > In [1]: from durandkerner_1 import durandkerner > ...: from sympy import solve > ...: from sympy . abc import x > ...: