40% off

Early-bird ends 15 Aug, 9am

Lock in £90

Sequences and Recurrence Relations for the TMUA

Updated August 2025

An exploration of sequences defined by explicit formulae and recurrence relations. This guide covers how to generate terms, spot emerging patterns, and calculate sums using sigma notation, while avoiding common pitfalls like the fence post error in the Test of Mathematics for University Admission.

Core concept

A sequence is an ordered list of numbers where each term is determined by its position nn or by a recurrence relation xn+1=f(xn)x_{n+1} = f(x_n) that calculates the next term from the previous one.

Understanding Sequences and Progressions

In the TMUA, three primary terms are used when discussing ordered lists of numbers: sequence, series, and progression. A sequence is the ordered list itself. A series is the sum of the terms in a sequence. A progression is used as a neutral, catch-all term that can refer to either, helping to make question wording easier to follow.

A sequence might be defined by a formula for the nthn^{th} term, such as xn=2n+1x_n = 2n + 1, or by a recurrence relation, which explains how to find a term based on the one before it, such as xn+1=xn+2x_{n+1} = x_n + 2.

Generating Terms and Spotting Patterns

The most critical skill for these problems is knowing how many terms to write out before concluding that a pattern has emerged. You must be cautious: concluding a pattern exists from only a few terms can lead to incorrect deductions. The number of terms required to verify a pattern is dictated by the structure of the recurrence relation itself.

Consider a sequence where each term depends on the previous two terms. If the rule is xn+2=f(xn,xn+1)x_{n+2} = f(x_n, x_{n+1}), you must see a repeat in two adjacent terms before you can be certain the entire sequence will begin to repeat.

Worked Example: Identifying a Recurrence Pattern

Let a sequence be generated by the recurrence relationship:
x0=1x_0 = 1, x1=2x_1 = 2, and xn+2=xnxn+1x_{n+2} = |x_n - x_{n+1}| for n0n \geq 0.

Let's calculate the first several terms:

  1. x0=1x_0 = 1
  2. x1=2x_1 = 2
  3. x2=x0x1=12=1x_2 = |x_0 - x_1| = |1 - 2| = 1
  4. x3=x1x2=21=1x_3 = |x_1 - x_2| = |2 - 1| = 1

At this stage (1,2,1,11, 2, 1, 1), it might be tempting to guess the sequence continues as 1,2,1,1,1,11, 2, 1, 1, 1, 1 \dots or repeats as 1,2,1,1,1,2,1,11, 2, 1, 1, 1, 2, 1, 1 \dots. However, because each term depends on the two preceding terms, we need more information. Let's continue:

  1. x4=x2x3=11=0x_4 = |x_2 - x_3| = |1 - 1| = 0
  2. x5=x3x4=10=1x_5 = |x_3 - x_4| = |1 - 0| = 1
  3. x6=x4x5=01=1x_6 = |x_4 - x_5| = |0 - 1| = 1
  4. x7=x5x6=11=0x_7 = |x_5 - x_6| = |1 - 1| = 0

Now the pattern is visible: 1,2,1,1,0,1,1,0,1,1,01, 2, 1, 1, 0, 1, 1, 0, 1, 1, 0 \dots. The sequence enters a cycle of (1,1,0)(1, 1, 0) after the first two terms.

Sigma Notation and the Fence Post Error

Sigma notation, represented by the symbol \sum, is used to denote the sum of a sequence. When dealing with n=kmxn\sum_{n=k}^{m} x_n, pay close attention to the limits. A very common mistake is the fence post error, where a student assumes the number of terms is simply mkm - k. In reality, the number of terms is mk+1m - k + 1.

Worked Example: Summing the Pattern

Using the sequence from the previous example (x0=1,x1=2,x2=1,x3=1,x4=0x_0 = 1, x_1 = 2, x_2 = 1, x_3 = 1, x_4 = 0 \dots), find the value of n=0100xn\sum_{n=0}^{100} x_n.

  1. Determine the number of terms: The sum starts at n=0n=0 and ends at n=100n=100. Thus, there are 1000+1=101100 - 0 + 1 = 101 terms.
  2. Identify the blocks: We write out the first few terms to see the structure: 1,2,(1,1,0),(1,1,0),1, 2, (1, 1, 0), (1, 1, 0), \dots. The first two terms (x0x_0 and x1x_1) are 1+2=31 + 2 = 3. The remaining 1012=99101 - 2 = 99 terms are made of repeating blocks of (1,1,0)(1, 1, 0).
  3. Calculate the sum: Since each block has 3 terms, there are 99÷3=3399 \div 3 = 33 full blocks. The sum of each block is 1+1+0=21 + 1 + 0 = 2.
  4. Final result: Total sum =3+(33×2)=3+66=69= 3 + (33 \times 2) = 3 + 66 = 69.

Key takeaways

  • A sequence is an ordered list, while a series is the sum of that list.
  • For recurrence relations where xn+1x_{n+1} depends on xnx_n, a single repeating value confirms a cycle. If xn+2x_{n+2} depends on xnx_n and xn+1x_{n+1}, two adjacent repeating values are required.
  • The number of terms in the sum n=kmxn\sum_{n=k}^{m} x_n is always mk+1m - k + 1.
  • Writing out the first few terms of a sigma notation expression is the best way to understand the underlying pattern.
Tips

When you encounter a complex-looking sigma notation, do not try to find a formula immediately. Write out the first four or five terms. Often, the terms will cancel each other out or form a simple repeating cycle that makes the sum easy to calculate.

Cautions

Always double check your term count for sums. In the sum from n=1n=1 to n=10n=10, there are 10 terms. In the sum from n=0n=0 to n=10n=10, there are 11 terms. Forgetting the '+1' is the most frequent cause of lost marks in sequence questions.

Insight

Recurrence relations can exhibit very different behaviours. Some converge to a single value, some diverge to infinity, and others enter periodic cycles. Identifying which behaviour is occurring is the first step in solving higher level progression problems.

Worked Examples

Example 1
The sequence xnx_n is given by: x1=10x_1 = 10, xn+1=xnx_{n+1} = \sqrt{x_n} for n1n \geq 1. What is the value of x100x_{100}? [Note that abca^{b^{c}} means a(bc)a^{(b^c)}]
A:1029910^{2^{99}}
B:10210010^{2^{100}}
C:1029910^{2^{-99}}
D:10210010^{2^{-100}}
E:1029910^{-2^{99}}
F:10210010^{-2^{100}}
G:1029910^{-2^{-99}}
H:10210010^{-2^{-100}}

Practice Questions

Practice Question 1
The sequence ana_n is given by the rule:
a1=2a_1 = 2
an+1=an+(1)na_{n+1} = a_n + (-1)^n for n1n \ge 1
What is
n=1100an\sum_{n=1}^{100} a_n?
A:150
B:250
C:-4750
D:5150
E:4(1(12)100)4(1-(\frac{1}{2})^{100})
F:4((32)1001)4((\frac{3}{2})^{100}-1)

Frequently asked questions

What is the difference between an explicit formula and a recurrence relation?

An explicit formula allows you to calculate the nthn^{th} term directly by substituting the value of nn, such as xn=3nx_n = 3n. A recurrence relation defines xn+1x_{n+1} in terms of xnx_n, meaning you must usually calculate all previous terms to find a specific one.

How many terms should I write out to be sure of a pattern?

There is no fixed number, but you should write enough to see a full cycle repeat. If the rule involves the previous two terms, you must wait until a pair of consecutive terms matches a pair seen earlier.

Can a sequence have a negative index like x1x_{-1}?

While theoretically possible in some mathematical contexts, the TMUA generally uses natural numbers for indices, typically starting from n=1n=1 or n=0n=0.

Ready to test your knowledge?

You've reached the end of this section. Start a practice session to solidify your understanding and master this topic.