Skip to content

9231 · 1.3

Summation of series — practice questions

Practice and worked examples for 9231 Summation of series. Short previews only — attempt the full question in MarkScheme against the official scheme.

Worked example 1

Find the sum of the series r=1n(r23r+2)\sum_{r=1}^{n} (r^2 - 3r + 2). Express your answer in fully factorised form.

Show solution outline

First, we split the summation into parts based on the standard formulae:

Sn=r=1n(r23r+2)=r=1nr23r=1nr+r=1n2S_n = \sum_{r=1}^{n} (r^2 - 3r + 2) = \sum_{r=1}^{n} r^2 - 3\sum_{r=1}^{n} r + \sum_{r=1}^{n} 2

Now, substitute the standard formulae for each part:

Sn=16n(n+1)(2n+1)3(12n(n+1))+2nS_n = \frac{1}{6}n(n+1)(2n+1) - 3 \left( \frac{1}{2}n(n+1) \right) + 2n

To combine these, we take out a common factor of nn. It is also helpful to put everything over a common denominator of 6.

Sn=n6[(n+1)(2n+1)9(n+1)+12]S_n = \frac{n}{6} [ (n+1)(2n+1) - 9(n+1) + 12 ]

Expand the brackets inside the square brackets:

Sn=n6[(2n2+3n+1)(9n+9)+12]S_n = \frac{n}{6} [ (2n^2 + 3n + 1) - (9n + 9) + 12 ]

Simplify the expression inside the square brackets:

Sn=n6[2n2+3n+19n9+12]=n6[2n26n+4]S_n = \frac{n}{6} [ 2n^2 + 3n + 1 - 9n - 9 + 12 ] = \frac{n}{6} [ 2n^2 - 6n + 4 ]

We can factor out a 2 from the bracket:

Sn=2n6[n23n+2]=n3[n23n+2]S_n = \frac{2n}{6} [ n^2 - 3n + 2 ] = \frac{n}{3} [ n^2 - 3n + 2 ]

Finally, factorise the quadratic expression:

Sn=13n(n1)(n2)S_n = \frac{1}{3}n(n-1)(n-2)

Worked example 2

i) Express 2(2r1)(2r+1)\frac{2}{(2r-1)(2r+1)} in partial fractions.

ii) Hence, find an expression for Sn=r=1n2(2r1)(2r+1)S_n = \sum_{r=1}^{n} \frac{2}{(2r-1)(2r+1)}.

iii) Find the sum to infinity of the series.

Show solution outline

i) Let 2(2r1)(2r+1)A2r1+B2r+1\frac{2}{(2r-1)(2r+1)} \equiv \frac{A}{2r-1} + \frac{B}{2r+1}.

Multiplying by the denominator gives 2A(2r+1)+B(2r1)2 \equiv A(2r+1) + B(2r-1).

Let r=12r = \frac{1}{2}: 2=A(1+1)+B(0)    2=2A    A=12 = A(1+1) + B(0) \implies 2 = 2A \implies A=1.

Let r=12r = -\frac{1}{2}: 2=A(0)+B(11)    2=2B    B=12 = A(0) + B(-1-1) \implies 2 = -2B \implies B=-1.

So, 2(2r1)(2r+1)=12r112r+1\frac{2}{(2r-1)(2r+1)} = \frac{1}{2r-1} - \frac{1}{2r+1}.

ii) We have found that the general term uru_r is in the form f(r)f(r+1)f(r) - f(r+1) where f(r)=12r1f(r) = \frac{1}{2r-1}.

Let's write out the terms of the sum Sn=r=1n(12r112r+1)S_n = \sum_{r=1}^{n} \left( \frac{1}{2r-1} - \frac{1}{2r+1} \right):

r=1:(1113)r=1: \quad (\frac{1}{1} - \frac{1}{3})

r=2:+(1315)r=2: \quad + (\frac{1}{3} - \frac{1}{5})

r=3:+(1517)r=3: \quad + (\frac{1}{5} - \frac{1}{7})

\dots

r=n:+(12n112n+1)r=n: \quad + (\frac{1}{2n-1} - \frac{1}{2n+1})

By inspection, the 13-\frac{1}{3} from the first term cancels with the +13+\frac{1}{3} from the second, and so on. This is a telescoping sum. The only terms that do not cancel are the first term, 11\frac{1}{1}, and the last term, 12n+1-\frac{1}{2n+1}.

Therefore, Sn=112n+1S_n = 1 - \frac{1}{2n+1}.

iii) The sum to infinity, SS_{\infty}, is the limit of SnS_n as nn \to \infty.

S=limn(112n+1)S_{\infty} = \lim_{n \to \infty} \left( 1 - \frac{1}{2n+1} \right)

As nn \to \infty, the denominator 2n+12n+1 \to \infty, so the fraction 12n+10\frac{1}{2n+1} \to 0.

S=10=1S_{\infty} = 1 - 0 = 1.