How can you calculate sums such as:
$$\sum_{k=1}^∞{\frac{1}{k(k+1)}}$$
How do you best explain this to students in a rigorous or non-rigorous way?
How can you calculate sums such as:
$$\sum_{k=1}^∞{\frac{1}{k(k+1)}}$$
How do you best explain this to students in a rigorous or non-rigorous way?
You just do the actual work : by definition, $\sum_{k \ge 1} \frac 1{k(k+1)} = \lim_{N \to \infty} \sum_{k=1}^N \frac 1{k(k+1)}$. Computing the partial sums, you get $$ \sum_{k=1}^N \frac 1{k(k+1)} = \sum_{k=1}^N \frac 1k - \frac 1{k+1} = 1- \frac 1{N+1} $$ because this sum is telescopic (feel free to explicitly write the sum with $\cdots$ dots to your students or expand as a difference of two sums and shift indices). Therefore $\sum_{k \ge 1} \frac 1{k(k+1)} = \lim_{N \to \infty} 1 - \frac 1{N+1} = 1$.
Hope that helps,
Less than rigorous:
First note that $\dfrac 1 {12\cdot13} = \dfrac 1 {12} - \dfrac 1{13}$ and similarly for other consecutive integers.
So we have $$ \left(1 - \frac 1 2 \right) + \left(\frac 1 2 - \frac 1 3 \right) + \left( \frac 1 3 - \frac 1 4 \right) + \cdots. $$ Then $\dfrac{-1}2$ cancels $\dfrac{+1}2$, and $\dfrac{-1}3$ cancels $\dfrac{+1}3$, and so on. Everthing cancels except the first term, which is $1$.
Rigorous: Look at $$ \left(1 - \frac 1 2 \right) + \left(\frac 1 2 - \frac 1 3 \right) + \left( \frac 1 3 - \frac 1 4 \right) + \cdots + \left(\frac 1{n} - \frac 1{n+1}. \right) $$ We need $\lim\limits_{n\to\infty}$ of that. Everything cancels except $1 -\dfrac 1{n+1}$. The essential point omitted in the less-than-rigorous version above is that the very last term approaches $0$.
$$ \sum_{k=1}^∞{\frac{1}{k(k+1)}} = \sum_{k=1}^∞{\frac{1}{k}-\frac{1}{k+1}} = \sum_{k=1}^∞{\frac{1}{k}} - \sum_{k=1}^∞\frac{1}{k+1} = \sum_{k=1}^∞{\frac{1}{k}} - \sum_{k=2}^∞\frac{1}{k} \\\ \\ \begin{align} = 1 &+ 1/2 + 1/3 + 1/4 + ⋯ \\ &- 1/2 - 1/3 - 1/4 - ⋯ \\ \\\ = 1 \end{align} \\\ \\ $$
&\vdots\
\end{align} $$
– Clement C. Mar 05 '16 at 19:29While exploitation of the resulting telescoping series after partial fraction expansion is a very simple way forward, I thought it might be instructive to present another way forward. Here, we write
$$\begin{align} \sum_{k=1}^\infty \frac{1}{k(k+1)}&=\sum_{k=1}^\infty \frac1k \int_0^1 x^k\,dx\\\\ &=\int_0^1\sum_{k=1}^\infty \frac{x^k}{k}\,dx\\\\ &=-\int_0^1\log(1-x)\,dx\\\\ &=1 \end{align}$$
as expected!