Comment #4 on issue 1944 by [email protected]: limit() returns incorrect answer for limit(exp(-x/a), x, oo)
http://code.google.com/p/sympy/issues/detail?id=1944

In the current pull/61 this gives:


    h[1] >>> limit(exp(-x/a),x,oo)
    nan
    h[2] >>> var('a', positive=True)
    a
    h[3] >>> limit(exp(-x/a),x,oo)
    0
    h[4] >>> var('a', negative=True)
    a
    h[4] >>> limit(exp(-x/a),x,oo)
    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.

Reply via email to