PDA

View Full Version : How to do this limit?


twoflower
Nov14-04, 11:44 AM
Hi all, I tried to do this limit, but didn't find a way:


\lim_{n \rightarrow \infty} \left( 1 - \frac{1}{2^2} \right) \left( 1 - \frac{1}{3^2} \right) ... \left( 1 - \frac{1}{n^2} \right)


I tried to use theorems I know so far, but it didn't lead to success. Will somebody help how to do these kinds of limits (I know there is no general rule, just some advice what should I try when I'm asked to find limits of such sequences)

The same case is with:


\lim_{n \rightarrow \infty} \left( \frac{1}{n} - \frac{2}{n} + \frac{3}{n} - ... + \frac{(-1)^{n-1}n}{n} \right)


or


\lim_{n \rightarrow \infty} \sum_{k=1}^{n} \frac{1}{k(k + 1)}


I hope I will be able to go on with a small hint....

Thank you.

shmoe
Nov14-04, 12:14 PM
For the first limit, try writing the kth term as \frac{k^2-1}{k^2}. Factor the numerator (difference of squares). Now write out the first 4 or 5 terms of your product in this form. Notice anything nice?

For the second, consider the sum S_n=1-2+3-...+(-1)^{n-1}n Can you find a general form forS_n? Write out the first few terms if need be. Hint:what is it when n is odd? even? Try writing n=2k or n=2k+1 respectively for n even/odd. You should be a step closer to your limit now.

For your third series, try partial fractions on the terms. Write out the first few terms and what do you see?

arildno
Nov14-04, 12:16 PM
For your first:
\prod_{i=2}^{n}(1-\frac{1}{i^{2}})=\prod_{i=2}^{n}(\frac{(i+1)(i-1)}{i^{2}})
This ought to be a rather suggestive form...

EDIT:
Arrgh..I was beaten.

twoflower
Nov16-04, 03:38 AM
For the first limit, try writing the kth term as \frac{k^2-1}{k^2}. Factor the numerator (difference of squares). Now write out the first 4 or 5 terms of your product in this form. Notice anything nice?

That's great, now I can guess the limit is 3/4. Thank you!