Comment #7 on issue 1015 by [email protected]: limit((1+x/(n+sin(n)))**n,n,oo) doesn't work
http://code.google.com/p/sympy/issues/detail?id=1015

I tried entering the original expression in (7) in Sympy Live, and it returns 1 as the function is interpreted differently.

The (intended) simplified version of the function is (1 + x/(2n + 1))**n

Whereas Sympy is interpreting it as (1 + x/(oo*n+1))**n.

The (incorrectly) interpreted function's limit will (correctly) evaluate to 1 when n --> oo.

The intended function's limit will correctly evaluate to e**(0.5x)

Here is the output in an IPython terminal

In [27]: f = (1+x/(n/(1/2)+1))

In [28]: f
Out[28]: x/(oo*n + 1) + 1


--
You received this message because this project is configured to send all issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
You received this message because you are subscribed to the Google Groups 
"sympy-issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/sympy-issues?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to