Limit of a sum with parameters : Maple -


i pretty novice maple, working compute limit of sum maple 2 parameters.

i have

sum(1/sqrt(k*n-sqrt(2)*n^2), k = sqrt(2)*n+1 .. (sqrt(2)+1)*n);

so do,

limit(1/sqrt(k*n-sqrt(2)*n^2), k = sqrt(2)*n+1 .. (sqrt(2)+1)*n, n = infinity);

and maple returned:

error, invalid input: limit expects 2nd argument, p, of type or(name = algebraic, set(name = algebraic)), received k = 2^(1/2)*n+1 .. (2^(1/2)+1)*n

how can comput limit ?

thank in advance time.

you forgot include sum in limit command.

limit(sum(1/sqrt(k*n-sqrt(2)*n^2), k= sqrt(2)*n+1 .. (sqrt(2)+1)*n), n= infinity); 

maple responds:

                                  2 

Comments

Popular posts from this blog

PHPMotion implementation - URL based videos (Hosted on separate location) -

c# - Unity IoC Lifetime per HttpRequest for UserStore -

I am trying to solve the error message 'incompatible ranks 0 and 1 in assignment' in a fortran 95 program. -