Status: New Owner: ---- Labels: Type-Defect Priority-Medium
New issue 2065 by pevzi23: Wrong result with expressions like limit(x**0.5, x, oo)
http://code.google.com/p/sympy/issues/detail?id=2065 When I raise x to the power less than 1, I get wrong result: In [24]: limit(x**(1/3.), x, oo) Out[24]: 0 In [25]: limit(x**0.5, x, oo) Out[25]: 0 Although, if I rewrite it with sqrt() I get the result I want: In [26]: limit(sqrt(x), x, oo) Out[26]: oo -- 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.
