Ask Your Question
1

cannot calculate limit

asked 2015-01-30 11:20:28 +0200

marguin gravatar image

updated 2023-01-09 23:59:36 +0200

tmonteil gravatar image

No answer from Sage-6.4.1 for this limit :

var('n'); u = (1+sqrt(n))^(-n); limit(u(n=n+1)/u,n=infinity)

Sage 4.7 gives 0 (correct). Why ?

edit retag flag offensive close merge delete

Comments

1
rws gravatar imagerws ( 2015-02-01 09:41:48 +0200 )edit

1 Answer

Sort by ยป oldest newest most voted
1

answered 2015-01-30 13:05:31 +0200

tmonteil gravatar image

updated 2015-01-30 13:07:48 +0200

I do not know exactly why, probably a regression in maxima. If you really want to know, you should provide a smaller interval of versions than (4.7, 6.4.1) so that we can have a look at the guilty commit. That said, you can still ask sympy to do that:

sage: limit(u(n=n+1)/u,n=infinity, algorithm="sympy")
0
edit flag offensive delete link more

Comments

Thanks ! Note that converting to exponentials works. My best interval is (4.7, 5.8), sorry

marguin gravatar imagemarguin ( 2015-01-30 13:52:04 +0200 )edit

This does not evaluate (returns the question) in 5.2. So it's been a while. Thierry, maybe you can isolate the Maxima command and report upstream?

kcrisman gravatar imagekcrisman ( 2015-01-30 15:00:35 +0200 )edit

I never used maxima commands (nor maxima itself), but if you give me some hints me how to do that, i will be glad to.work on it.

tmonteil gravatar imagetmonteil ( 2015-02-01 18:10:51 +0200 )edit

The maxima command is: limit((1+sqrt(n+1))^(-n-1)/(1+sqrt(n))^(-n),n,inf)

Returns zero with Maxima 5.24.0 and is not evaluated when running in http://sagecell.sagemath.org/

robert.marik gravatar imagerobert.marik ( 2015-02-01 23:36:56 +0200 )edit

Thanks @robert.marik - I reported this upstream at https://sourceforge.net/p/maxima/bugs...

kcrisman gravatar imagekcrisman ( 2015-02-03 15:22:36 +0200 )edit

Your Answer

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

Add Answer

Question Tools

2 followers

Stats

Asked: 2015-01-30 11:20:28 +0200

Seen: 626 times

Last updated: Jan 30 '15