Updates:
        Status: Accepted
        Labels: WrongResult Series

Comment #1 on issue 2065 by asmeurer: Wrong result with expressions like limit(x**0.5, x, oo)
http://code.google.com/p/sympy/issues/detail?id=2065

I get the same problem in master. The problems obviously has something to do with Real exponents as opposed to exact ones.

In [119]: limit(x**Rational(1,3), x, oo)
Out[120]: ∞

In [121]: limit(x**(1/3.), x, oo)
Out[121]: 0

In [122]: limit(x**0.5, x, oo)
Out[122]: 0

In [123]: 1/3.
Out[123]: 0.333333333333

In [124]: limit(sqrt(x), x, oo)
Out[124]: ∞

In [125]: limit(x**Rational(1, 2), x, oo)
Out[125]: ∞


--
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.

Reply via email to