TMUA topic revision

Paper 1 · 13 min read

Sequences and Series

Sequence questions reward spotting the generation rule early — closed form, recurrence, arithmetic or geometric — before summing.

All Topic Revision

Overview

Introduction

A sequence is an ordered list of terms, which may be finite or infinite. A series is the result of adding terms from a sequence. The word progression is often used as a general label for a sequence or its associated series. The position of a term matters: u1u_1 is the first term, u2u_2 is the second term, and unu_n is the term in position nn.

Sequences Given by an nnth-Term Formula

An nnth-term formula gives a term directly from its position. For example, if

un=4n3,u_n = 4n-3,

then substituting n=1,2,3,n=1,2,3,\ldots gives the sequence

1,5,9,13,1,5,9,13,\ldots

The subscript is a label, not multiplication: unu_n means the term in position nn.

An explicit formula can be used in two directions:

  • substitute a position to find the corresponding term;
  • set the formula equal to a given value and solve for the position.

Worked example

Let

un=3n22.u_n=3n^2-2.

The first three terms are

u1=1,u2=10,u3=25.u_1=1,\qquad u_2=10,\qquad u_3=25.

To determine whether 7373 is a term, solve

3n22=73.3n^2-2=73.

This gives n2=25n^2=25, so n=5n=5 because a term number is a positive integer. Therefore, 7373 is the fifth term.

A finite list of terms does not usually determine a unique formula. Many different rules can begin with the same few values, so a claimed pattern must be supported by the rule stated in the question rather than by guesswork alone.

The notation

k=pquk\sum_{k=p}^{q}u_k

means

up+up+1++uq.u_p+u_{p+1}+\cdots+u_q.

There are qp+1q-p+1 terms because both endpoints are included. This inclusive count is a frequent source of errors.

TMUA strategy: Write out two or three terms whenever an indexed expression looks complicated. This often exposes an incorrect starting index, final index or exponent before substantial algebra is done.

Sequences Generated by Recurrence Relations

A recurrence relation defines each new term using an earlier term. A simple recurrence has the form

xn+1=f(xn),x_{n+1}=f(x_n),

together with an initial value such as x1=ax_1=a. The initial value is essential: without it, the recurrence usually describes many possible sequences.

To generate the sequence, substitute the current term into the rule repeatedly.

Worked example

Suppose

x1=2,xn+1=xn3.x_1=2,\qquad x_{n+1}=|x_n-3|.

Then

x2=23=1,x_2=|2-3|=1,

x3=13=2,x_3=|1-3|=2,

and the values continue as

2,1,2,1,2,1,2,1,\ldots

The sequence alternates with period 22.

For a recurrence depending only on the immediately preceding term, once a value repeats, all later terms repeat in the same way. In the example, x3=x1x_3=x_1, so applying the same function again must produce x4=x2x_4=x_2, then x5=x3x_5=x_3, and so on.

A value LL satisfying

L=f(L)L=f(L)

is called a fixed value of the recurrence. If some term equals LL, every subsequent term also equals LL. For example, if xn+1=xn+62x_{n+1}=\frac{x_n+6}{2}, then L=6L=6 is fixed because

6=6+62.6=\frac{6+6}{2}.

You are expected to generate and reason about simple recurrences, but not to solve general recurrence relations by advanced methods.

Common traps

  • Do not replace xnx_n with nn. The input to ff is the previous term, not the term number.
  • Check the starting index. A rule beginning with x0x_0 produces different labels from one beginning with x1x_1.
  • Do not claim a cycle merely because the first few terms look repetitive. For a one-step recurrence, a cycle is guaranteed once an earlier value actually reappears.

Arithmetic Sequences and Series

An arithmetic sequence changes by a constant amount each time. This constant is the common difference dd:

un+1un=d.u_{n+1}-u_n=d.

If the first term is aa, then moving from the first term to the nnth term requires n1n-1 steps. Therefore,

un=a+(n1)d.u_n=a+(n-1)d.

The n1n-1 is important: the first term has had no common differences added.

For the sum of the first nn terms, write the sum forwards and backwards:

Sn=a+(a+d)++(a+(n1)d),S_n=a+(a+d)+\cdots +(a+(n-1)d),

Sn=(a+(n1)d)+(a+(n2)d)++a.S_n=(a+(n-1)d)+(a+(n-2)d)+\cdots+a.

Adding corresponding terms gives nn identical pairs, each equal to 2a+(n1)d2a+(n-1)d. Hence

2Sn=n(2a+(n1)d),2S_n=n\bigl(2a+(n-1)d\bigr),

so

Sn=n2(2a+(n1)d).S_n=\frac{n}{2}\bigl(2a+(n-1)d\bigr).

If the last term is ll, this can be written more simply as

Sn=n2(a+l).S_n=\frac{n}{2}(a+l).

This says that the sum is

number of terms×average of the first and last terms.\text{number of terms}\times\text{average of the first and last terms}.

The natural numbers 1,2,3,,n1,2,3,\ldots,n form an arithmetic sequence with a=1a=1, d=1d=1 and last term nn. Therefore,

1+2++n=n(n+1)2.1+2+\cdots+n=\frac{n(n+1)}{2}.

Worked example

An arithmetic sequence begins

7,11,15,7,11,15,\ldots

Here a=7a=7 and d=4d=4. Its 25th term is

u25=7+24(4)=103.u_{25}=7+24(4)=103.

The sum of its first 25 terms is

S25=252(7+103)=1375.S_{25}=\frac{25}{2}(7+103)=1375.

For a consecutive block from the ppth term to the qqth term, the number of terms is qp+1q-p+1. You may either treat the block as a new arithmetic sequence or subtract partial sums:

up+up+1++uq=SqSp1.u_p+u_{p+1}+\cdots+u_q=S_q-S_{p-1}.

Efficient TMUA methods

  • When the first and last terms are easy to identify, use Sn=n2(a+l)S_n=\frac{n}{2}(a+l) rather than calculating dd unnecessarily.
  • To test whether a sequence is arithmetic, compare consecutive differences rather than relying on appearance.
  • If the question asks only for a sum, look for symmetry: terms equally far from the ends have the same total.

Common mistakes

  • Using a+nda+nd instead of a+(n1)da+(n-1)d.
  • Confusing the nnth term unu_n with the sum SnS_n.
  • Counting the terms from position pp to position qq as qpq-p instead of qp+1q-p+1.

Finite Geometric Series

A geometric sequence is formed by multiplying by a constant common ratio rr:

un+1un=r\frac{u_{n+1}}{u_n}=r

whenever the ratio is defined. If the first term is aa, then

un=arn1.u_n=ar^{n-1}.

The sum of the first nn terms is

Sn=a+ar+ar2++arn1.S_n=a+ar+ar^2+\cdots+ar^{n-1}.

Multiplying by rr gives

rSn=ar+ar2++arn1+arn.rS_n=ar+ar^2+\cdots+ar^{n-1}+ar^n.

Subtracting the second equation from the first causes the middle terms to cancel:

SnrSn=aarn.S_n-rS_n=a-ar^n.

Therefore, for r1r\ne1,

Sn=a(1rn)1r.S_n=\frac{a(1-r^n)}{1-r}.

The equivalent form

Sn=a(rn1)r1S_n=\frac{a(r^n-1)}{r-1}

is sometimes more convenient when r>1r>1. If r=1r=1, every term equals aa, so

Sn=na.S_n=na.

Worked example

Find the sum of the first eight terms of

5,10,20,40,5,10,20,40,\ldots

Here a=5a=5, r=2r=2 and n=8n=8. Thus

S8=5(128)12=1275.S_8=\frac{5(1-2^8)}{1-2}=1275.

For the block

arm+arm+1++arn,ar^m+ar^{m+1}+\cdots+ar^n,

the first term is armar^m, the common ratio is rr, and the number of terms is nm+1n-m+1. Hence

arm+arm+1++arn=arm1rnm+11r.ar^m+ar^{m+1}+\cdots+ar^n =ar^m\frac{1-r^{n-m+1}}{1-r}.

It can also be viewed as a difference of partial sums, but the indices must be handled carefully:

arm+arm+1++arn=Sn+1Sm,ar^m+ar^{m+1}+\cdots+ar^n=S_{n+1}-S_m,

where Sk=a+ar++ark1S_k=a+ar+\cdots+ar^{k-1}.

Common traps

  • The common ratio may be negative, producing alternating signs.
  • In arn1ar^{n-1}, the first term corresponds to exponent 00.
  • Do not use the finite-sum formula with r=1r=1 because it would divide by zero.
  • Check whether the formula uses 1rn1-r^n over 1r1-r or rn1r^n-1 over r1r-1; mixing the two forms changes the sign.

Infinite Geometric Series

An infinite series is interpreted through its partial sums. If SnS_n is the sum of the first nn terms and the values of SnS_n approach a fixed number as nn increases, the series converges to that number. A necessary first check is that the individual terms approach 00. For a geometric series,

a+ar+ar2+,a+ar+ar^2+\cdots,

this happens precisely when

r<1.|r|<1.

Under this condition, rn0r^n\to0 as nn\to\infty. Starting from

Sn=a(1rn)1r,S_n=\frac{a(1-r^n)}{1-r},

we obtain

S=a1r.S_\infty=\frac{a}{1-r}.

The condition is on the magnitude of rr, not merely on whether r<1r<1. For example, r=12r=-\frac12 converges, but r=2r=-2 does not.

If r1|r|\ge1 and a0a\ne0, the geometric series does not converge:

  • r=1r=1 gives repeated non-zero terms;
  • r=1r=-1 makes the partial sums oscillate;
  • r>1|r|>1 makes the term magnitudes grow;
  • for other boundary cases, the terms fail to approach zero.

Worked example

Consider

126+332+12-6+3-\frac32+\cdots

The first term is 1212 and the common ratio is 12-\frac12. Since

12<1,\left|-\frac12\right|<1,

the series converges and

S=121(1/2)=8.S_\infty=\frac{12}{1-(-1/2)}=8.

The sum from the mmth term onwards is itself an infinite geometric series whose first term is umu_m. Therefore,

um+um+1+um+2+=um1ru_m+u_{m+1}+u_{m+2}+\cdots=\frac{u_m}{1-r}

when r<1|r|<1.

TMUA strategy: Before using an infinite-sum formula, state or check r<1|r|<1. This takes little time and prevents one of the most common errors in this topic.

Do not confuse the terms of a sequence with the partial sums of its series. In a convergent geometric series, the individual terms approach 00, while the partial sums approach a1r\frac{a}{1-r}.

Factorials and Binomial Coefficients

For a non-negative integer nn, factorial notation is defined by

n!=n(n1)(n2)21,n!=n(n-1)(n-2)\cdots 2\cdot1,

with

0!=1.0!=1.

For example,

5!=54321=120.5!=5\cdot4\cdot3\cdot2\cdot1=120.

The binomial coefficient

(nr)\binom{n}{r}

counts the number of ways to choose rr objects from nn objects when order does not matter. For integers satisfying 0rn0\le r\le n,

(nr)=n!r!(nr)!.\binom{n}{r}=\frac{n!}{r!(n-r)!}.

For example,

(103)=10!3!7!=1098321=120.\binom{10}{3}=\frac{10!}{3!7!} =\frac{10\cdot9\cdot8}{3\cdot2\cdot1} =120.

Cancelling before evaluating the factorials is usually faster and reduces arithmetic errors.

The coefficients have useful symmetry:

(nr)=(nnr).\binom{n}{r}=\binom{n}{n-r}.

Choosing the rr objects to keep is equivalent to choosing the nrn-r objects to leave out. In particular,

(n0)=(nn)=1.\binom{n}{0}=\binom{n}{n}=1.

Pascal's triangle arranges the binomial coefficients so that each interior entry is the sum of the two entries above it. This gives

(nr)=(n1r1)+(n1r).\binom{n}{r}=\binom{n-1}{r-1}+\binom{n-1}{r}.

Pascal's triangle from rows n equals 0 to n equals 6. Row n equals 5 is highlighted as 1, 5, 10, 10, 5, 1, with arrows showing that the interior 10 is the sum of 4 and 6 above it.

Pascal's triangle is efficient for small powers. For a large power or a question asking for only one term, the factorial formula is usually quicker.

Binomial Expansion

For a positive integer nn, the binomial theorem expands a power of two terms:

(a+b)n=r=0n(nr)anrbr.(a+b)^n=\sum_{r=0}^{n}\binom{n}{r}a^{n-r}b^r.

Written out,

(a+b)n=an+(n1)an1b+(n2)an2b2++bn.(a+b)^n =a^n+\binom{n}{1}a^{n-1}b+\binom{n}{2}a^{n-2}b^2+\cdots+b^n.

For (1+x)n(1+x)^n, this becomes

(1+x)n=1+(n1)x+(n2)x2++xn.(1+x)^n =1+\binom{n}{1}x+\binom{n}{2}x^2+\cdots+x^n.

The general term is especially useful. The term involving brb^r is

Tr+1=(nr)anrbr.T_{r+1}=\binom{n}{r}a^{n-r}b^r.

It is called the (r+1)(r+1)th term because r=0r=0 gives the first term.

For an expression of the form (a+f(x))n(a+f(x))^n,

Tr+1=(nr)anr[f(x)]r.T_{r+1}=\binom{n}{r}a^{n-r}[f(x)]^r.

Keep the whole of f(x)f(x) in brackets before raising it to a power. This preserves constants and signs correctly.

Worked example: finding a coefficient

Find the coefficient of x4x^4 in

(23x)6.(2-3x)^6.

The x4x^4 term occurs when r=4r=4:

(64)264(3x)4.\binom{6}{4}2^{6-4}(-3x)^4.

Therefore, the coefficient is

(64)22(3)4=15481=4860.\binom{6}{4}2^2(-3)^4 =15\cdot4\cdot81 =4860.

The sign is positive because the negative term is raised to an even power.

Worked example: finding a constant term

Find the constant term in

(x2+2x)6.\left(x^{-2}+2x\right)^6.

The general term is

(6r)(x2)6r(2x)r.\binom{6}{r}(x^{-2})^{6-r}(2x)^r.

Its power of xx is

2(6r)+r=12+3r.-2(6-r)+r=-12+3r.

A constant term has power 00, so

12+3r=0,-12+3r=0,

which gives r=4r=4. The constant term is therefore

(64)24=240.\binom{6}{4}2^4=240.

Efficient TMUA methods

  • When asked for one term or coefficient, use the general term instead of expanding everything.
  • Determine the required value of rr from the power of xx before doing numerical arithmetic.
  • Use (nr)=(nnr)\binom{n}{r}=\binom{n}{n-r} when it makes the calculation smaller.
  • For consecutive terms, update systematically: the power of the first binomial part decreases by 11, while the power of the second increases by 11.

Common mistakes

  • Forgetting that in (3x)r(-3x)^r, the minus sign and the 33 are both raised to the power rr.
  • Giving an entire term when the question asks only for its coefficient.
  • Confusing the index rr with the term number: r=4r=4 gives the fifth term.
  • Using the positive-integer binomial expansion when the power is negative or fractional. Such expansions are not part of this topic.
  • Assuming every requested power of xx must occur. If the equation for rr has no integer solution with 0rn0\le r\le n, that power is absent and its coefficient is 00.

Turn this into exam pace

Create a free account for topic practice across the syllabus, or try an open sample question with a full worked solution.