Comment #4 on issue 3250 by [email protected]: simplify() results in loss of precision
http://code.google.com/p/sympy/issues/detail?id=3250
I wonder if that's the reason for 0 (rather than a small number) being returned in the following:
solve(x/(1-x)**2-10**-10)
[0, 10000000002.0000]
_[0]==0
True
solve(x/(1-x)**2-10**-S(10))[1].n() # the small soln is at [1]
9.99999999800000e-11 -- You received this message because you are subscribed to the Google Groups "sympy-issues" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sympy-issues?hl=en.
