Method of differences and miscellaneous series
Most exam problems involve series that are neither AP nor GP, but can still be summed in closed form by clever tricks. The two key ideas are: (1) method of differences , when consecutive differences form a known progression; and (2) telescoping , when the general term can be written as f(k+1)−f(k) so the sum collapses.
Method of differences
Suppose a1,a2,a3,… is a sequence whose differences dk=ak+1−ak form a simpler progression (often AP or GP). Then
an=a1+∑k=1n−1dk.
You sum the differences (which is easier), then add to a1.
Example pattern. 4,11,22,37,56,… Differences: 7,11,15,19,… , an AP. So dk=7+4(k−1)=4k+3. Then
an=4+∑k=1n−1(4k+3)=4+4⋅2(n−1)n+3(n−1)=2n2+n+1.
Telescoping
If you can write Tk=f(k+1)−f(k) (or similar), then
∑k=1nTk=f(n+1)−f(1).
Most middle terms cancel.
Standard fact. k(k+1)1=k1−k+11. So
∑k=1nk(k+1)1=1−n+11=n+1n.
More generally:
- k(k+1)(k+2)1=21[k(k+1)1−(k+1)(k+2)1].
- (2k−1)(2k+1)1=21[2k−11−2k+11].
Arithmetic-Geometric Series (AGP)
A series like 1+2x+3x2+4x3+… , each term is an AP times a GP. Sum of n terms (for r=1):
Sn=∑k=1n(a+(k−1)d)rk−1.
Trick. Compute Sn−rSn, regroup, sum the GP that emerges. Result:
Sn=1−ra+(1−r)2d⋅r(1−rn−1)−1−r[a+(n−1)d]rn.
For ∣r∣<1 and n→∞:
S∞=1−ra+(1−r)2dr.
Worked examples
Example 1. Find the n-th term and the sum of 3,8,15,24,35,…
Differences: 5,7,9,11,… , AP with a=5,d=2. So
Tn=3+∑k=1n−1(2k+3)=3+(n−1)n+3(n−1)=n2+2n.
Sum: ∑k=1n(k2+2k)=6n(n+1)(2n+1)+n(n+1).
Example 2. Sum 1⋅21+2⋅31+3⋅41+⋯+n(n+1)1.
k(k+1)1=k1−k+11. Sum telescopes to 1−n+11=n+1n.
Example 3. Sum 1⋅31+3⋅51+5⋅71+… to n terms.
(2k−1)(2k+1)1=21[2k−11−2k+11]. Sum telescopes to 21[1−2n+11]=2n+1n.
Example 4. Sum the AGP 1+2x+3x2+4x3+⋯+nxn−1.
This is the derivative of 1+x+x2+⋯+xn. Or use the AGP method:
S=1+2x+3x2+⋯+nxn−1
xS=x+2x2+3x3+⋯+nxn
S−xS=1+x+x2+⋯+xn−1−nxn=1−x1−xn−nxn.
So S=(1−x)21−(n+1)xn+nxn+1.
For ∣x∣<1,n→∞: S=(1−x)21.
Example 5. Find the sum to n terms of 1⋅22+2⋅32+3⋅42+…
Tk=k(k+1)2=k(k2+2k+1)=k3+2k2+k. So
∑k=1nTk=∑k3+2∑k2+∑k=(2n(n+1))2+3n(n+1)(2n+1)+2n(n+1).
Combine over common factor 12n(n+1):
12n(n+1)(3n2+11n+10)=12n(n+1)(n+2)(3n+5).
Try it yourself
- Find the n-th term of 2,5,10,17,26,…
- Sum to n terms: 1⋅2+2⋅3+3⋅4+…
- Sum: 1⋅2⋅31+2⋅3⋅41+… to n terms.
- Sum the AGP 1+3x+5x2+7x3+… to n terms.
- Find the n-th term of 1,5,14,30,55,… (Hint: it equals 6n(n+1)(2n+1).)
- Sum to ∞: 1+23+45+87+…
- Sum to n terms: 2⋅51+5⋅81+8⋅111+…
- Find the sum to n terms of 4+44+444+… (Hint: 94(10k−1).)
- Find the n-th term and sum of 3,7,13,21,31,…
- Sum: 1+(1+2)+(1+2+3)+… to n terms.
- Sum: 12+32+52+… to n terms.
- Sum to ∞: ∑k=1∞2kk (AGP with a=0,d=1,r=1/2).
Pitfalls / Tricks
- When stuck on a non-AP non-GP series, take differences. If they are familiar, you have a route.
- For fractions like k(k+m)1, decompose into partial fractions and telescope.
- For AGP, multiply by the common ratio and subtract.
- Insight. The trick is always to convert the given series into a sum of standard series (AP, GP, or one of the three power sums). Once you write Tk in those terms, you're done.