Hello everyone,
I must declare "assume" twice. First time, I get an unevalued form.
After the second assume, I get the fine result :
I use Sage 5.7
sage: forget () ; var('n')
n
sage: assume ((x<1) and (x>0)) ; limit (n*x^n*(1-x), n=oo) ; limit
(n*x^n*(1-x), n=oo)
-(x - 1)*limit(x^n*n, n, +Infinity) # unevalued
-(x - 1)*limit(x^n*n, n, +Infinity)
sage: assume ((x<1) and (x>0)) ; limit (n*x^n*(1-x), n=oo) ; limit
(n*x^n*(1-x), n=oo)
0 # the right value
0
Must I declare it in the
trac.sagemath.org database ?
Have a nice day !
F.