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:

\sum_{k=1}^{n} k(k+1) = \frac{1}{3}[n(n+1)(n+2) - 0] = \frac{n(n+1)(n+2)}{3}

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

\Delta a_k = a_{k+1} - a_k

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.

First differences of the sequence k squaredTwo rows. Top row shows the sequence 1, 4, 9, 16, 25. Bottom row shows the first differences: 3, 5, 7, 9. Arrows connect each consecutive pair in the top row to the corresponding difference below. aₖ : 1 4 9 16 25 Δaₖ : 3 5 7 9 First differences of k² are 2k+1 — the odd numbers. The differences form an AP, so k² is "one level above" an AP.
The first differences of $1, 4, 9, 16, 25$ are $3, 5, 7, 9$ — the consecutive odd numbers. Since the first differences are not constant (but the second differences are), the original sequence is quadratic, not linear.

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:

\Delta^2 a_k = \Delta(\Delta a_k) = \Delta a_{k+1} - \Delta a_k = (a_{k+2} - a_{k+1}) - (a_{k+1} - a_k) = a_{k+2} - 2a_{k+1} + a_k

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.

Difference table for the sequence 1, 8, 27, 64, 125A triangular difference table. Top row: 1, 8, 27, 64, 125. Second row (first differences): 7, 19, 37, 61. Third row (second differences): 12, 18, 24. Fourth row (third differences): 6, 6. The constant third differences confirm the sequence is cubic. aₖ : 1 8 27 64 125 Δ¹ : 7 19 37 61 Δ² : 12 18 24 Δ³ : 6 6 Third differences constant ⇒ the sequence is cubic (degree 3).
The difference table for $1, 8, 27, 64, 125$ (the cubes). The third differences are constant at $6 = 3!$, confirming that $k^3$ is a cubic polynomial. In general, for the sequence $k^d$, the $d$-th differences are constant and equal to $d!$.

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

T_k = \frac{1}{m+1}\big[(k)(k+1)\cdots(k+m) - (k-1)(k)(k+1)\cdots(k+m-1)\big]

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:

\sum_{k=1}^{n} k(k+1)\cdots(k+m-1) = \frac{n(n+1)(n+2)\cdots(n+m)}{m+1}

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.

The Vn method analogy with integrationTwo rows comparing discrete and continuous. Row 1 (discrete): sum of k(k+1)...(k+m-1) equals n(n+1)...(n+m) over (m+1). Row 2 (continuous): integral of x to the m dx equals x to the (m+1) over (m+1). An arrow labelled analogy connects them. Discrete: Σ k(k+1)···(k+m−1) = n(n+1)···(n+m) / (m+1) Continuous: ∫ xᵐ dx = xᵐ⁺¹ / (m+1) ↕ same pattern Summing products of m consecutive integers mirrors integrating xᵐ.
The $V_n$ method for products of consecutive integers mirrors the power rule of integration. The discrete version raises the "falling factorial degree" by one and divides by the new degree, just as $\int x^m\,dx$ raises the power and divides.

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

V_k = \frac{-1}{(m-1)} \cdot \frac{1}{k(k+1)\cdots(k+m-2)}

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

\sum_{k=1}^{n} \frac{1}{k(k+1)(k+2)} = \frac{1}{2}\left[\frac{1}{1 \cdot 2} - \frac{1}{(n+1)(n+2)}\right] = \frac{1}{4} - \frac{1}{2(n+1)(n+2)}

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:

  1. Factor the general term into products of consecutive integers (or reciprocals of such products).
  2. If the factors are not consecutive, use partial fractions to split the term into pieces that are.
  3. 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.

\sum_{k=1}^{n} k(k+1)(k+2) = \frac{n(n+1)(n+2)(n+3)}{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:

T_1 + T_2 + T_3 = 1 \cdot 2 \cdot 3 + 2 \cdot 3 \cdot 4 + 3 \cdot 4 \cdot 5 = 6 + 24 + 60 = 90

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.

\sum_{k=1}^{n} k(k+1)(k+2) = \frac{n(n+1)(n+2)(n+3)}{4}

Result: \displaystyle\sum_{k=1}^{n} k(k+1)(k+2) = \frac{n(n+1)(n+2)(n+3)}{4}.

Bar chart of the terms k(k+1)(k+2) for k=1 to 6Six vertical bars representing the terms 6, 24, 60, 120, 210, 336. Each bar is taller than the previous one, showing cubic growth. The cumulative sums are labelled above each bar. k=1 6 k=2 24 k=3 60 k=4 120 k=5 210 k=6 336
The terms $k(k+1)(k+2)$ grow as a cubic: $6, 24, 60, 120, 210, 336$. The sum of the first $6$ terms is $\frac{6 \cdot 7 \cdot 8 \cdot 9}{4} = \frac{3024}{4} = 756$, and the last term alone ($336$) is nearly half the total — typical for polynomial-growth series.

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.

V_k = \frac{-1}{2} \cdot \frac{1}{k(k+1)} \implies T_k = V_k - V_{k+1}

Check: V_k - V_{k+1} = \frac{-1}{2}\left[\frac{1}{k(k+1)} - \frac{1}{(k+1)(k+2)}\right]

= \frac{-1}{2} \cdot \frac{(k+2) - k}{k(k+1)(k+2)} = \frac{-1}{2} \cdot \frac{2}{k(k+1)(k+2)} = \frac{-1}{k(k+1)(k+2)}

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.

\sum_{k=1}^{n} T_k = V_{n+1} - V_1 = \frac{-1}{2} \cdot \frac{1}{(n+1)(n+2)} - \frac{-1}{2} \cdot \frac{1}{1 \cdot 2}
= \frac{1}{4} - \frac{1}{2(n+1)(n+2)}

Why: the telescope collapses n terms to just V_{n+1} - V_1.

Step 4. Verify for n = 2.

T_1 + T_2 = \frac{1}{1 \cdot 2 \cdot 3} + \frac{1}{2 \cdot 3 \cdot 4} = \frac{1}{6} + \frac{1}{24} = \frac{4 + 1}{24} = \frac{5}{24}

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

\sum_{k=1}^{\infty} \frac{1}{k(k+1)(k+2)} = \frac{1}{4}

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}.

Partial sums of 1 over k(k+1)(k+2) approaching 1/4A graph with n on the horizontal axis from 1 to 20 and partial sum on the vertical axis from 0 to 0.3. A dashed red line at 0.25 marks the infinite sum. Dots climb steeply from about 0.167 and quickly level off near 0.25. n Sₙ 0 0.2 0.25 S∞ = 1/4 1 2 3 5 10 20 1/6 5/24
The partial sums of $\sum \frac{1}{k(k+1)(k+2)}$ converge rapidly to $\frac{1}{4} = 0.25$. By $n = 5$, the sum is already $0.2381$, within $5\%$ of the limit. The convergence is fast because $\frac{1}{k(k+1)(k+2)}$ decays roughly as $\frac{1}{k^3}$.

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

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.

Interactive: partial sums of 1 over k(k+1)(k+2)A graph where a draggable point controls the number of terms n. The readout shows n and the partial sum 1/4 minus 1 over 2(n+1)(n+2). A dashed line at y equals 0.25 shows the limit. n Sₙ 0.25 1/4 drag to change n
Drag the point to watch the partial sums of $\sum \frac{1}{k(k+1)(k+2)}$ converge to $\frac{1}{4}$. The formula $S_n = \frac{1}{4} - \frac{1}{2(n+1)(n+2)}$ gives the exact partial sum for each $n$.

Where this leads next