Re: Issue 2065 in sympy: Wrong result with expressions like limit(x**0.5, x, oo)

2010-10-02 Thread sympy
Updates: Status: Fixed Labels: -NeedsReview -asmeurer PassedReview Comment #5 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 Ondrej reviewed it positively (see the link to the GitHub Pull

Re: Issue 2065 in sympy: Wrong result with expressions like limit(x**0.5, x, oo)

2010-10-02 Thread sympy
Updates: Labels: EasyToFix NeedsReview asmeurer Comment #4 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 This is really easy to fix. Here is the code from limit.py (comments added): if e.is_

Re: Issue 2065 in sympy: Wrong result with expressions like limit(x**0.5, x, oo)

2010-10-02 Thread sympy
Comment #3 on 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 Thanks for your answer. But does this bug affect only limit calculation or is it present in other operations too? -- You received this message

Re: Issue 2065 in sympy: Wrong result with expressions like limit(x**0.5, x, oo)

2010-09-26 Thread sympy
Comment #2 on issue 2065 by smichr: Wrong result with expressions like limit(x**0.5, x, oo) http://code.google.com/p/sympy/issues/detail?id=2065 The ability to rationalize all numbers with a call to nsimplify with the rational=True flag can help in this case in t2: limit(nsimplify(x**(1/

Re: Issue 2065 in sympy: Wrong result with expressions like limit(x**0.5, x, oo)

2010-09-25 Thread sympy
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

Issue 2065 in sympy: Wrong result with expressions like limit(x**0.5, x, oo)

2010-09-25 Thread sympy
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) Ou