문제

Here I can't find the limit

limit(U0*(r^(n+1)-1)/(-1+r), n = infinity)

in Maple with condition |r| < 1 which is obviously -U0/(-1+r).

How can I tell Maple that abs(r) <1 so it automatically computes the limit.

P.S. I tried >assume(r <1); additionally( r> -1); but didn't work!

도움이 되었습니까?

해결책

Using Maple 15.01 (2011) or or Maple 16.01 (2012) I am getting,

limit(U0*(r^(n+1)-1)/(-1+r), n = infinity) assuming abs(r)<1;

                            U0  
                        - ------
                          -1 + r

I did not see the same behaviour for Maple 14.01 (2010).

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top