In short
The method of differences finds the sum of a series by expressing each term as the difference of consecutive values of some auxiliary function: if T_k = V_k - V_{k+1}, the sum telescopes to S_n = V_1 - V_{n+1}. First order differences check whether a sequence is linear; higher order differences detect polynomial patterns. The V_n method is the systematic approach: construct V_n so that T_n = V_n - V_{n+1} (or V_{n+1} - V_n), and the sum collapses. This technique handles sums whose general term is a product of consecutive integers, a rational function with factorable denominator, or any expression that can be rewritten as a telescoping difference.
Take the series 1 \cdot 2 + 2 \cdot 3 + 3 \cdot 4 + 4 \cdot 5 + \cdots + n(n+1). The general term T_k = k(k+1) is neither an AP term nor a GP term. The standard formulas for \sum k and \sum k^2 can handle it after expanding — k(k+1) = k^2 + k — but that expansion starts to feel clumsy when the general term is k(k+1)(k+2) or \frac{1}{k(k+1)(k+2)}. Expanding those into sums of powers is painful, and the resulting algebra is error-prone.
There is a cleaner path. Notice that k(k+1) = \frac{1}{3}[k(k+1)(k+2) - (k-1)k(k+1)]. Each term is the difference of two consecutive values of the function V_k = \frac{1}{3}k(k+1)(k+2). When you add the terms from k = 1 to k = n, every intermediate value cancels, and the sum collapses to V_n minus V_0:
No expansion into k^2 + k, no separate formulas for \sum k^2 and \sum k — just one telescoping step. This is the method of differences.
First order differences
The difference operator
Given a sequence a_1, a_2, a_3, \dots, the first difference of a_k is
The sequence of first differences \Delta a_1, \Delta a_2, \Delta a_3, \dots tells you how much each term changes from one position to the next.
If a_k = 3k + 2 (an AP), the first differences are all \Delta a_k = 3(k+1) + 2 - (3k + 2) = 3. A constant first difference is the defining property of a linear (arithmetic) sequence.
If a_k = k^2, the first differences are \Delta a_k = (k+1)^2 - k^2 = 2k + 1 — the odd numbers. The first differences are themselves an AP, not a constant.
Using first differences to detect patterns
The first differences tell you the "degree" of a polynomial sequence:
| Sequence | First differences | Second differences | Pattern |
|---|---|---|---|
| 2, 5, 8, 11 | 3, 3, 3 | 0, 0 | Linear (AP) |
| 1, 4, 9, 16 | 3, 5, 7 | 2, 2 | Quadratic |
| 1, 8, 27, 64 | 7, 19, 37 | 12, 18 | Cubic (third differences constant at 6) |
A polynomial of degree d has constant d-th differences. This fact is the foundation of the method of differences for summing series.
Higher order differences
The second difference is the difference of the first differences:
The third difference is \Delta^3 a_k = \Delta^2 a_{k+1} - \Delta^2 a_k, and so on. For a polynomial sequence of degree d, the d-th differences are constant and the (d+1)-th differences are all zero.
The V_n method
The V_n method is the core technique for summing a series by differences. The idea: find an auxiliary function V_n such that the general term T_n of the series equals V_n - V_{n+1} (or V_{n+1} - V_n). Then the sum telescopes.
Products of consecutive integers
The general term T_k = k(k+1)(k+2) \cdots (k+m-1) — a product of m consecutive integers starting at k — has a natural V_n.
$V_n$ Method for Products of Consecutive Integers
If T_k = k(k+1)(k+2)\cdots(k+m-1), then
Setting V_k = \frac{1}{m+1}(k-1)k(k+1)\cdots(k+m-1), you get T_k = V_{k+1} - V_k, and the sum telescopes:
This formula is the discrete analogue of \int x^m\,dx = \frac{x^{m+1}}{m+1}. Just as integrating x^m raises the power by one and divides by the new power, summing a product of m consecutive integers gives a product of m+1 consecutive integers divided by m+1.
Rational terms with factorable denominators
The V_n method works equally well in reverse — for reciprocals of products of consecutive integers. If T_k = \frac{1}{k(k+1)(k+2)\cdots(k+m-1)}, set
Then T_k = V_k - V_{k+1}, and the sum telescopes. The pattern: for products in the numerator, the V_n has one extra factor; for products in the denominator, the V_n has one fewer factor.
For the common case m = 2: T_k = \frac{1}{k(k+1)}, V_k = \frac{-1}{k}, and T_k = \frac{1}{k} - \frac{1}{k+1}. This is the partial-fraction telescoping sum you met in sigma notation.
For m = 3: T_k = \frac{1}{k(k+1)(k+2)}, V_k = \frac{-1}{2} \cdot \frac{1}{k(k+1)}, and
Finding V_n when the general term is complex
When T_n does not immediately look like a product of consecutive integers, the strategy is:
- Factor the general term into products of consecutive integers (or reciprocals of such products).
- If the factors are not consecutive, use partial fractions to split the term into pieces that are.
- Apply the V_n formula to each piece separately.
For example, T_k = k \cdot k! does not look like a product of consecutive integers, but k \cdot k! = (k+1)! - k!. Setting V_k = k! gives T_k = V_{k+1} - V_k, and the sum telescopes to (n+1)! - 1.
Two worked examples
Example 1: Find $\displaystyle\sum_{k=1}^{n} k(k+1)(k+2)$
Step 1. Identify the structure.
T_k = k(k+1)(k+2) is a product of 3 consecutive integers starting at k, so m = 3.
Why: the V_n formula for products of m consecutive integers applies directly.
Step 2. Apply the formula: multiply the product by one more factor on the right and divide by m + 1 = 4.
Why: T_k = V_{k+1} - V_k where V_k = \frac{(k-1)k(k+1)(k+2)}{4}, and the sum telescopes to V_{n+1} - V_1 = \frac{n(n+1)(n+2)(n+3)}{4} - 0.
Step 3. Verify for small n. Take n = 3:
The formula gives \frac{3 \cdot 4 \cdot 5 \cdot 6}{4} = \frac{360}{4} = 90. Confirmed.
Why: checking against direct computation is the simplest way to verify a summation formula.
Step 4. Extract the closed form.
Result: \displaystyle\sum_{k=1}^{n} k(k+1)(k+2) = \frac{n(n+1)(n+2)(n+3)}{4}.
The bar chart shows the cubic growth of the terms. Unlike a GP where the last term dominates exponentially, here each term grows polynomially, and the sum grows as the next higher power — a quartic divided by 4.
Example 2: Find $\displaystyle\sum_{k=1}^{n} \frac{1}{k(k+1)(k+2)}$
Step 1. Recognise the structure.
T_k = \frac{1}{k(k+1)(k+2)} is the reciprocal of a product of 3 consecutive integers (m = 3).
Why: the V_n method for reciprocals of consecutive-integer products applies here, using m - 1 = 2 in the denominator of V_k.
Step 2. Construct V_k.
Check: V_k - V_{k+1} = \frac{-1}{2}\left[\frac{1}{k(k+1)} - \frac{1}{(k+1)(k+2)}\right]
That gives -T_k, so T_k = V_{k+1} - V_k (the sign flips). No problem — the sum still telescopes.
Why: verifying that V_k - V_{k+1} or V_{k+1} - V_k actually equals T_k is essential. A sign error here ruins the entire calculation.
Step 3. Sum by telescoping.
Why: the telescope collapses n terms to just V_{n+1} - V_1.
Step 4. Verify for n = 2.
Formula: \frac{1}{4} - \frac{1}{2 \cdot 3 \cdot 4} = \frac{1}{4} - \frac{1}{24} = \frac{6 - 1}{24} = \frac{5}{24}. Confirmed.
Step 5. Find the infinite sum. As n \to \infty, \frac{1}{2(n+1)(n+2)} \to 0, so
Result: \displaystyle\sum_{k=1}^{n} \frac{1}{k(k+1)(k+2)} = \frac{1}{4} - \frac{1}{2(n+1)(n+2)}, and the infinite sum is \dfrac{1}{4}.
The graph shows even faster convergence than the simpler telescoping sum \sum \frac{1}{k(k+1)}. The extra factor in the denominator makes each term smaller, so the partial sums stabilise sooner.
Common confusions
-
"The method of differences only works for polynomial sequences." It works for any sequence whose terms can be expressed as a telescoping difference. This includes factorials (k \cdot k! = (k+1)! - k!), reciprocals of factored products, and many other non-polynomial forms.
-
"Finding V_n requires guesswork." For products (or reciprocals) of consecutive integers, the V_n formula is systematic, not a guess. For other forms, partial fractions or algebraic manipulation guides you to the right V_n. The "guess" is really "recognise a standard pattern."
-
"\sum k(k+1) = \sum k^2 + \sum k is the only way." Expanding into standard power sums works, but the V_n method is cleaner: \sum_{k=1}^{n} k(k+1) = \frac{n(n+1)(n+2)}{3} in one step, whereas the expansion route requires knowing \sum k^2 = \frac{n(n+1)(2n+1)}{6} and combining two terms.
-
"Telescoping means consecutive terms cancel completely." Telescoping means that the sum collapses because of cancellation between parts of consecutive terms. In the standard V_n telescope, the V_{k+1} part of T_k cancels with the V_{k+1} part of T_{k+1}'s predecessor. Only the endpoints survive — but the individual T_k values do not cancel each other.
-
"Constant differences mean the sequence is an AP." Constant first differences mean an AP. Constant second differences mean a quadratic. The level of constant differences tells you the degree of the polynomial.
Going deeper
If you came here for the V_n method and its application to summing products and reciprocals of consecutive integers, you have the complete toolkit. The rest of this section explores the broader framework that the method of differences sits in.
The calculus of finite differences
The difference operator \Delta is the discrete analogue of the derivative \frac{d}{dx}. The parallels run deep:
| Continuous | Discrete |
|---|---|
| \frac{d}{dx}[x^n] = nx^{n-1} | \Delta[k^{(n)}] = n \cdot k^{(n-1)} where k^{(n)} = k(k-1)\cdots(k-n+1) |
| \int x^n\,dx = \frac{x^{n+1}}{n+1} + C | \sum k^{(n)} \delta k = \frac{k^{(n+1)}}{n+1} + C |
| \frac{d}{dx}[e^x] = e^x | \Delta[2^k] = 2^k (the exponential whose "derivative" is itself) |
The notation k^{(n)} is called the falling factorial. It plays the role for finite differences that x^n plays for derivatives. The product k(k+1)(k+2)\cdots(k+m-1) is the rising factorial k^{(\overline{m})}, and it too has a clean differencing rule. The V_n method is simply the discrete analogue of the power rule of integration, expressed in the language of falling (or rising) factorials.
Beyond polynomial terms
When the general term involves both polynomial and exponential parts — like k^2 \cdot 3^k — the method of differences can still apply, but you may need to combine it with the multiply-subtract technique from arithmetico-geometric series. Multiply by the ratio, subtract, and the polynomial part drops by one degree. Repeat until only a GP remains.
For terms involving fractions whose denominators do not factor into consecutive integers — like \frac{1}{k^2 + 1} — the method of differences may not produce a clean telescope. In such cases, partial fractions over the complex numbers (or recognising the sum as a known special function) may be needed. These situations appear at JEE Advanced level and are covered in miscellaneous series.
Where this leads next
- Sigma and Pi Notation — the language used to write the sums that the method of differences evaluates. Telescoping sums are introduced there; this article takes the technique much further.
- Special Series — the standard formulas for \sum k, \sum k^2, \sum k^3 that the V_n method can bypass or re-derive.
- Polynomial Operations — factoring general terms into products of consecutive integers often requires polynomial manipulation skills from this chapter.
- Arithmetico-Geometric Series — the multiply-subtract technique from AGS and the telescoping technique from differences are complementary tools for different types of series.
- Miscellaneous Series — combines the method of differences with partial fractions, split-and-regroup techniques, and other strategies for series that resist any single method.