0

$a_1 = 1$

$a_{n+1} = \left[1 - \dfrac{1}{(n+1)^2}\right]a_n$ for $n \in \mathbb{N}$.

I've proved it converges by bounding it below (by 0) and showing it is monotonically decreasing.

How can I find its limit?

I've tried $\displaystyle\lim_{n \to \infty} a_n = \lim_{n \to \infty} a_{n+1}$ but ran into problems.

Anne Bauval
  • 34,650

2 Answers2

3

$a_{n+1} = {n^2 +2n \over (n+1)^2} a_n = {n+2 \over n+1} { n \over n+1} a_n$ and so ${n+1 \over n+2} a_{n+1} = { n \over n+1} a_n$. In particular, ${ n \over n+1} a_n =C$ for some constant $C$.

copper.hat
  • 172,524
1

Something you could try is rewriting it as the following $$ a_{n} = (1 - \frac{1}{n^2})a_{n-1} = (\frac{(n)^2 -1}{n^2})a_{n-1}= (\frac{(n+1)(n-1)}{n^2})a_{n-1} $$ and then the next steps become a little more obvious, notably using the recurrence relationship $$ a_n = \frac{(n+1)(n-1)}{n^2} \cdot \frac{(n)(n-2)}{(n-1)^2}\cdot \frac{(n-1)(n-3)}{(n-2)^2} ... \\ $$ from here you can notice that all the terms will cancel expect the first term and the last term which will leave you with: $$ a_n = \frac{n+1}{2n} $$ from there the you can apply the limit as you would to any other series to show that it converges to $\frac{1}{2}$

mof
  • 46
  • 4