Telescoping series — find sum of 1/(1·2) + 1/(2·3) + ... + 1/(n(n+1))

medium CBSE JEE-MAIN NCERT Class 11 2 min read

Question

Find the sum: S=112+123+134++1n(n+1)S = \dfrac{1}{1 \cdot 2} + \dfrac{1}{2 \cdot 3} + \dfrac{1}{3 \cdot 4} + \cdots + \dfrac{1}{n(n+1)}

(NCERT Class 11 — Sequences and Series)


Solution — Step by Step

The key move: split 1k(k+1)\frac{1}{k(k+1)} into simpler fractions.

1k(k+1)=Ak+Bk+1\frac{1}{k(k+1)} = \frac{A}{k} + \frac{B}{k+1}

Multiplying both sides by k(k+1)k(k+1): 1=A(k+1)+Bk1 = A(k+1) + Bk.

Setting k=0k = 0: A=1A = 1. Setting k=1k = -1: B=1B = -1.

1k(k+1)=1k1k+1\frac{1}{k(k+1)} = \frac{1}{k} - \frac{1}{k+1}
S=(1112)+(1213)+(1314)++(1n1n+1)S = \left(\frac{1}{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)

Most terms cancel in pairs: 12-\frac{1}{2} from the first bracket cancels with +12+\frac{1}{2} from the second; 13-\frac{1}{3} cancels with +13+\frac{1}{3}, and so on. Only the first and last terms survive:

S=11n+1=nn+1S = 1 - \frac{1}{n+1} = \mathbf{\frac{n}{n+1}}

Why This Works

This is called a telescoping series because, like a collapsible telescope, the intermediate terms fold into each other and vanish. The trick is the partial fraction decomposition that writes each term as a difference of two consecutive terms.

As nn \to \infty, S1S \to 1. So the infinite series k=11k(k+1)=1\sum_{k=1}^{\infty} \frac{1}{k(k+1)} = 1.

Verification for small nn: when n=1n = 1, S=12=12S = \frac{1}{2} = \frac{1}{2} (and 11+1=12\frac{1}{1+1} = \frac{1}{2}). When n=2n = 2, S=12+16=23S = \frac{1}{2} + \frac{1}{6} = \frac{2}{3} (and 23\frac{2}{3}). Checks out.


Alternative Method

You can prove the formula by mathematical induction. Base case: n=1n = 1 gives 12=12\frac{1}{2} = \frac{1}{2}. Inductive step: assume Sn=nn+1S_n = \frac{n}{n+1}, then Sn+1=Sn+1(n+1)(n+2)=nn+1+1(n+1)(n+2)=n(n+2)+1(n+1)(n+2)=n2+2n+1(n+1)(n+2)=(n+1)2(n+1)(n+2)=n+1n+2S_{n+1} = S_n + \frac{1}{(n+1)(n+2)} = \frac{n}{n+1} + \frac{1}{(n+1)(n+2)} = \frac{n(n+2) + 1}{(n+1)(n+2)} = \frac{n^2 + 2n + 1}{(n+1)(n+2)} = \frac{(n+1)^2}{(n+1)(n+2)} = \frac{n+1}{n+2}. Done.

The partial fraction trick works for any series of the form 1k(k+d)\sum \frac{1}{k(k+d)}. Just write 1k(k+d)=1d(1k1k+d)\frac{1}{k(k+d)} = \frac{1}{d}\left(\frac{1}{k} - \frac{1}{k+d}\right). For JEE, also know: 1k(k+1)(k+2)=12(1k(k+1)1(k+1)(k+2))\frac{1}{k(k+1)(k+2)} = \frac{1}{2}\left(\frac{1}{k(k+1)} - \frac{1}{(k+1)(k+2)}\right) — double telescoping.


Common Mistake

Students sometimes write the partial fraction as 1k+1k+1\frac{1}{k} + \frac{1}{k+1} (with a plus sign) instead of 1k1k+1\frac{1}{k} - \frac{1}{k+1} (minus sign). With a plus sign, the terms add up instead of cancelling, and the sum blows up. Always verify your partial fraction decomposition by plugging in a specific value of kk.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next