Problem 2: convergence.

2 . Determine whether the following converge or diverge:

a)

> sum( (k+3)! / (3*k)!, k=1..infinity);

[Maple Math]
[Maple Math]

Well, that is certainly interesting, but it is not too useful for most of you! By the ratio test,

> ( ((k+3+1))! /(3*(k+1))! ) / ((k+3)! / (3*k)! );

[Maple Math]

> simplify(%);

[Maple Math]

> limit(%, k=infinity);

[Maple Math]

Which is certainly smaller than 1. Therefore the series converges by the ratio test. Valid arguments can also be made with other comparisons.

b)

> sum((-1)^k * (1-k)/sqrt(k), k=1..infinity);

[Maple Math]

But are these terms small?

> limit( (-1)^k*(1-k)/(sqrt(k)),k = infinity);

[Maple Math]

Since this is not a finite number, the series diverges . by the basic divergence test 11.1.7.