Ask Your Question
1

Is this a bug or what am I missing, simple limit computation

asked 10 years ago

userX gravatar image

updated 2 years ago

tmonteil gravatar image
f=(e^(-x))/(2+ sin(x));
limit(f,x=infinity)

this yields "undefined", but the limits is clearly zero, thus I gather there's a bug or I am missing something basic . All help is appreciated.

Preview: (hide)

3 Answers

Sort by » oldest newest most voted
3

answered 10 years ago

rws gravatar image

If Maxima is unsatisfactory, try SymPy:

sage: f = exp(-x) / (2 + sin(x))
sage: import sympy
sage: sympy.limit(f,x,oo)
0
Preview: (hide)
link

Comments

thank you, appreciate the sympy tip

userX gravatar imageuserX ( 10 years ago )
2

answered 10 years ago

vdelecroix gravatar image

Yes it is a bug. And still present in the development version sage-6.6.beta2. I opened ticket #17878 for that. Thanks for the report! I hope it will be fixed in a next release.

Preview: (hide)
link

Comments

thank you kindly

userX gravatar imageuserX ( 10 years ago )
0

answered 10 years ago

Joe gravatar image

It certainly looks like a bug. Limit is 0 - WolframAlpha gives limit as 0

Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 10 years ago

Seen: 517 times

Last updated: Mar 01 '15