Convergence

If you have a sequence of values, [Maple Math] for which

> lim(alpha[n],n=1..infinity)=Gamma;

[Maple Math]

then we say that [Maple Math] converges to [Maple Math] . The convergence is of order [Maple Math] if there exist a number [Maple Math] independent of [Maple Math] , for which

> abs((alpha[n]-Gamma)/g[n]) <= K;

[Maple Math]

For example, with our data from above:

> for n from 1 to 6 do alpha[n]:=subs(x=0.6,sum(x^i/(i!),i=0..n)): print (n,abs(p-alpha[n]), 2*0.6^(n+1)/(n+1)!); od;

>

[Maple Math]

[Maple Math]

[Maple Math]

[Maple Math]

[Maple Math]

[Maple Math]

[Maple Math]

[Maple Math]

[Maple Math]

[Maple Math]

[Maple Math]

[Maple Math]

This shows that the convergence is of order

[Maple Math] .

> series(exp(x),x,5);

[Maple Math]

which illustrates the order of the error term. Since the [Maple Math] term makes the right hand side in the inequality smaller, one can also omit it and simply say that convergence is [Maple Math] as indicated in the output to the MapleV 'series()' command.