Status: New
Owner: ----
Labels: Type-Defect Priority-Medium WrongResult Solvers Polynomial
New issue 3837 by [email protected]: RootOf.free_symbols
gives wrong result
http://code.google.com/p/sympy/issues/detail?id=3837
In [1]: eq = expand((x**5 + 3*x + 1)*(x**3 + 4*x + 1))
In [2]: ex = solve(eq, x)[0]
In [3]: ex.free_symbols
Out[3]: set([x])
But the expected result is set([]).
Constructing ex directly works fine:
In [4]: ex = RootOf(x**3 +x*4 + 1, 0)
In [5]: ex.free_symbols
Out[5]: set([])
--
You received this message because this project is configured to send all
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings
--
You received this message because you are subscribed to the Google Groups
"sympy-issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/sympy-issues?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.