Quant Memo
Foundational

Telescoping Sums and Products

A technique for collapsing a long sum or product into just its first and last pieces, by rewriting each term as a difference (or ratio) that cancels against its neighbor.

An interviewer writes 112+123+134++199100\dfrac{1}{1\cdot2} + \dfrac{1}{2\cdot3} + \dfrac{1}{3\cdot4} + \cdots + \dfrac{1}{99\cdot100} on the whiteboard and asks for the exact value. Adding ninety-nine fractions by hand is out of the question in an interview, and there's no obvious pattern to guess from the first couple of terms. The trick is to notice that each term isn't really a fraction to be added — it's a difference in disguise, and once you rewrite it that way almost everything in the sum cancels.

The idea: rewrite each term as a difference

A sum telescopes when you can write the general term aka_k as bkbk+1b_k - b_{k+1} for some simpler sequence bkb_k. Then:

k=1n(bkbk+1)=(b1b2)+(b2b3)++(bnbn+1)=b1bn+1.\sum_{k=1}^{n} (b_k - b_{k+1}) = (b_1 - b_2) + (b_2 - b_3) + \cdots + (b_n - b_{n+1}) = b_1 - b_{n+1} .

In plain English: every middle term appears once with a plus sign and once with a minus sign from the neighboring pair, so it cancels — like a collapsible telescope sliding shut, only the two ends survive. A sum of nn terms becomes a subtraction of two numbers. The same idea works for products: if each factor is a ratio bk/bk+1b_k / b_{k+1}, the product collapses to b1/bn+1b_1 / b_{n+1}.

Worked example 1: the fraction sum

Notice that 1k(k+1)=1k1k+1\dfrac{1}{k(k+1)} = \dfrac{1}{k} - \dfrac{1}{k+1} — check it by combining the right side over a common denominator: (k+1)kk(k+1)=1k(k+1)\dfrac{(k+1)-k}{k(k+1)} = \dfrac{1}{k(k+1)}. So the sum becomes:

k=199(1k1k+1)=(112)+(1213)++(1991100).\sum_{k=1}^{99} \left(\frac{1}{k} - \frac{1}{k+1}\right) = \left(1 - \frac12\right) + \left(\frac12 - \frac13\right) + \cdots + \left(\frac{1}{99} - \frac{1}{100}\right) .

Every term from 12\frac12 through 199\frac{1}{99} cancels against its neighbor, leaving only the very first piece and the very last piece: 11100=991001 - \dfrac{1}{100} = \dfrac{99}{100}. Ninety-nine additions collapsed into one subtraction.

Worked example 2: a telescoping product

Evaluate k=210(11k2)\displaystyle\prod_{k=2}^{10} \left(1 - \frac{1}{k^2}\right). Factor each term with a difference of squares: 11k2=(k1)(k+1)k2=k1kk+1k1 - \dfrac{1}{k^2} = \dfrac{(k-1)(k+1)}{k^2} = \dfrac{k-1}{k}\cdot\dfrac{k+1}{k}. Splitting the product into two separate telescoping chains, k1k\prod \frac{k-1}{k} runs 1223910=110\frac12\cdot\frac23\cdots\frac{9}{10} = \frac{1}{10} (everything but the first numerator and last denominator cancels), and k+1k\prod \frac{k+1}{k} runs 32431110=112\frac32\cdot\frac43\cdots\frac{11}{10} = \frac{11}{2}. Multiplying the two surviving pieces: 110112=1120\frac{1}{10}\cdot\frac{11}{2} = \frac{11}{20}.

b1 -b2 +b2 -b3 +b3 -b4 +b4 -b5 b1 cancels cancels cancels -b5 Only the first and last terms survive: sum = b1 - b5
Every interior term is generated twice with opposite signs and cancels, leaving only the endpoints.

If a term can be written as a difference bkbk+1b_k - b_{k+1} (or a ratio for products), the sum collapses to b1bn+1b_1 - b_{n+1}. The hunt is always for that rewrite — usually via partial fractions, a difference of squares, or a trig identity.

Whenever you see a denominator that's a product of consecutive integers, or terms shrinking geometrically toward a fixed structure, try partial fractions first — telescoping is almost always hiding underneath.

Related concepts

Practice in interviews

Further reading

  • Engel, Problem-Solving Strategies, ch. 1
ShareTwitterLinkedIn