Sequences and Series for ESAT Advanced Mathematics

Updated July 2026

This topic covers the fundamental properties of sequences and series required for the ESAT. It includes working with recurrence relations, arithmetic progressions, and geometric progressions. Mastery of these concepts allows students to identify patterns, calculate finite and infinite sums, and manipulate complex algebraic series through systematic methods.

Core concept

A sequence is an ordered list of terms, whereas a series is the sum of such a list. In the ESAT, these are often described as progressions, which encompass both recurrence relations and standard arithmetic or geometric patterns.

Definitions of Sequences and Progressions

In ESAT Mathematics, three specific terms are used to describe lists and sums of numbers: sequences, series, and progressions. A sequence is defined as an ordered list of numbers that often continues infinitely. A series is the result of summing the terms of a sequence. The term progression is used as a neutral, catch-all term that can refer to either sequences or series, and is often used in exam questions to maintain clarity.

Students are expected to write out terms of a sequence based on a given rule and to identify emerging patterns. These patterns are then used to make further mathematical deductions. The primary challenge is determining how many terms must be written before a pattern is reliably established.

Recurrence Relations and Pattern Spotting

Recurrence relations define each term based on previous terms. For example, consider the relation:

x0=1,x1=2,xn+2=xnxn+1,n0x_0 = 1, x_1 = 2, x_{n+2} = |x_n - x_{n+1}|, n \geq 0

Calculating the first four terms yields: 1,2,1,11, 2, 1, 1. It might be tempting to assume the sequence repeats as 1,2,1,1,2,1,1...1, 2, 1, 1, 2, 1, 1... or remains constant as 11. However, these conclusions are premature. Because the rule for xn+2x_{n+2} depends on the two previous terms, we cannot conclude a pattern exists until we see a repeat in two consecutive terms.

Writing further terms: 1,2,1,1,0,1,1,0,1,1...1, 2, 1, 1, 0, 1, 1, 0, 1, 1...

Here, the sequence stabilises into a repeating cycle of (1,1,0)(1, 1, 0). This demonstrates that the number of terms needed to justify a conclusion depends entirely on the structure of the recurrence relationship.

Summation and Sigma Notation

Sigma notation (Σ\Sigma) is used to denote the sum of terms. When calculating a sum like n=0100xn\sum_{n=0}^{100} x_n, follow three key steps:

  1. Identify the limits: In this case, the sum starts at x0x_0 and ends at x100x_{100}. This results in 101101 terms. This is the fence post issue: for any range from mm to nn inclusive, there are nm+1n - m + 1 terms.
  2. Write out the first few terms: This helps determine the structure. For our example: x0+x1+x2+x3+x4+x5...=1+2+1+1+0+1...x_0 + x_1 + x_2 + x_3 + x_4 + x_5... = 1 + 2 + 1 + 1 + 0 + 1...
  3. Examine the end of the sum: Look at the final terms like x98,x99,x100x_{98}, x_{99}, x_{100} to see how they fit into the observed blocks. In our example, the sequence consists of x0,x1,x2x_0, x_1, x_2 followed by repeating blocks of 3 terms (1,1,0)(1, 1, 0).

Arithmetic Progressions

An Arithmetic Progression (AP) is a sequence where the difference between consecutive terms is constant. You must be able to use and derive the following formulae:

  • First term: aa
  • Common difference: d=un+1und = u_{n+1} - u_n
  • nthn^{th} term: un=a+(n1)du_n = a + (n - 1)d
  • Sum to nn terms: Sn=n2(2a+(n1)d)=n2(u1+un)S_n = \frac{n}{2}(2a + (n - 1)d) = \frac{n}{2}(u_1 + u_n)

The sum can be understood as the number of terms multiplied by the average value of the terms: Sn=n×(u1+un2)S_n = n \times (\frac{u_1 + u_n}{2}).

Linear combinations of arithmetic sequences are also arithmetic. If unu_n and vnv_n are arithmetic sequences, then Sn+TnS_n + T_n (the sum of their respective series) forms a new arithmetic series with first term a+Aa + A and common difference d+Dd + D. This property holds for any linear combination αun+βvn\alpha u_n + \beta v_n.

Geometric Progressions

A Geometric Progression (GP) is a sequence where the ratio between consecutive terms is constant. The following formulae are essential:

  • First term: aa
  • Common ratio: r=un+1unr = \frac{u_{n+1}}{u_n}
  • nthn^{th} term: un=arn1u_n = ar^{n-1}
  • Sum to nn terms: Sn=a(1rn)1rS_n = \frac{a(1 - r^n)}{1 - r}
  • Sum to infinity: S=a1rS_\infty = \frac{a}{1 - r}, which is valid only when r<1|r| < 1

You can generate new GPs by transforming existing ones. For instance, if you have a GP with ratio rr, replacing rr with r-r creates an alternating GP. Squaring every term in a GP with first term aa and ratio rr creates a new GP with first term a2a^2 and ratio r2r^2. Similarly, raising every term to the power of kk creates a GP with first term aka^k and ratio rkr^k.

Summing Parts of a Geometric Series

To find the sum of a specific portion of a GP, such as arm+arm+1++arnar^m + ar^{m+1} + \dots + ar^n, use one of these three methods:

  1. Difference of two sums: Calculate Sn+1SmS_{n+1} - S_m. Note the index n+1n+1 is required to include the arnar^n term.
  2. Factorisation: Factorise out rmr^m to get rm(a+ar++arnm)r^m(a + ar + \dots + ar^{n-m}). The term in the bracket is a standard GP starting at aa.
  3. New GP: Treat the sub-series as a completely new GP where the first term is armar^m, the common ratio is rr, and the number of terms is nm+1n - m + 1.

Key takeaways

  • A sequence is a list, a series is a sum, and a progression is a general term for either.
  • Recurrence relations of the form xn+1=f(xn)x_{n+1} = f(x_n) require enough terms to be calculated to ensure a pattern repeat before making deductions.
  • The number of terms in a sum from mm to nn is always nm+1n - m + 1.
  • An arithmetic progression sum is the number of terms multiplied by the average of the first and last terms.
  • A geometric series only converges to a sum to infinity if the absolute value of the common ratio is less than one.
Tips

When faced with a complex recurrence relation, calculate at least two more terms than you think you need to confirm the pattern. In sigma notation, always check if the lower limit is 0 or 1, as this changes the total count of terms.

Cautions

Be extremely careful with indices in geometric partial sums. The sum arm+...+arnar^m + ... + ar^n is often wrongly identified as having nmn-m terms. Always use nm+1n-m+1 to avoid the fence post error.

Insight

The sum of any number of arithmetic progressions is always another arithmetic progression. This reflects the linear nature of APs, whereas geometric progressions involve exponential growth, making their linear combinations much more complex to simplify.

Frequently asked questions

What is the fence post error?

The fence post error occurs when a student incorrectly assumes there are nmn - m terms in a sequence starting at mm and ending at nn. The correct number of terms is nm+1n - m + 1. For example, from x0x_0 to x10x_{10} there are 11 terms, not 10.

How do I know if a sequence is arithmetic or geometric?

Calculate the difference and the ratio between consecutive terms. If un+1unu_{n+1} - u_n is constant, it is arithmetic. If un+1/unu_{n+1} / u_n is constant, it is geometric.

Can I sum a geometric series if the ratio is exactly 1 or -1?

The standard sum formula Sn=a(1rn)1rS_n = \frac{a(1 - r^n)}{1 - r} cannot be used if r=1r = 1 because it leads to division by zero. If r=1r = 1, the sum is simply n×an \times a. A sum to infinity only exists if r<1|r| < 1.

Is the sum of two geometric sequences also a geometric sequence?

Generally, no. Unlike arithmetic sequences, the sum of terms from two different geometric sequences does not typically result in a single geometric sequence with a constant ratio.

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.