[sage-support] Re: incorrect limit

2016-04-19 Thread Robert Dodier
On 2016-04-17, kcrisman wrote: > Thanks. In pure Maxima we get: > > (%i3) limit((x^(1/x)-1)*sqrt(x),x,inf); > (%o3) inf > (%i4) limit((x^(1/x)-1)*sqrt(x),x,0); > (%o4) und > (%i5)

[sage-support] Re: incorrect limit

2016-04-17 Thread Greg Marks
Dear SAGE developers, On the other hand, we do get a correct result this way: ┌┐ │ SageMath Version 7.1, Release Date: 2016-03-20 │ │ Type "notebook()" for the browser-based notebook interface.

[sage-support] Re: incorrect limit

2016-04-16 Thread kcrisman
>sage: assume(x, 'real') >sage: limit((x^(1/x)-1)*sqrt(x), x=infinity) >+Infinity >sage: limit(((1/x)^x-1)/sqrt(x), x=0, dir='+') >+Infinity > > Thanks. In pure Maxima we get: (%i3) limit((x^(1/x)-1)*sqrt(x),x,inf); (%o3) inf (%i4)