Status: Accepted
Owner: ----
CC: ondrej.certik
Labels: Type-Defect Priority-High Series
New issue 2130 by Vinzent.Steinberg: wrong limit
http://code.google.com/p/sympy/issues/detail?id=2130
limit((1+y)**(1/y), y, 0)
E
limit((1+y)**(1/y) - E, y, 0)
1 - E
The first one is correct, the second one should be 0 of course.
For some reason, the implementation thinks that in an Add(), the limit
converges to 1 instead of E:
limit((1+y)**(1/y) - 1, y, 0)
0
limit((1+y)**(1/y) - 1000, y, 0)
-999
--
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.