Sequences and Arithmetic Series for the ESAT

Updated July 2026

An exploration of sequences, recurrence relations, and arithmetic series for the ESAT. This subtopic covers identifying patterns in numeric lists and using the standard formulae for arithmetic progressions. Understanding the relationship between terms and sums is essential for solving complex admissions problems efficiently.

Core concept

An arithmetic progression is a sequence where the difference between consecutive terms is constant (dd). Its sum is calculated as the product of the number of terms and their average value: Sn=n2(u1+un)S_n = \frac{n}{2}(u_1 + u_n).

Understanding Sequences and Series

In the context of Advanced Mathematics, it is important to distinguish between three related terms: sequence, series, and progression. A sequence is an ordered list of numbers, which often continues indefinitely. A series is the sum of the terms in a sequence. The term progression is a more general, neutral term used in the ESAT to describe these patterns, helping to make question wording more accessible. For example, examiners might refer to the first term of a series when technically referring to the first term of the underlying sequence whose sum forms that series.

Generating Sequences and Spotting Patterns

Sequences can be defined by a formula for the nthn^{\text{th}} term or by a recurrence relation of the form xn+1=f(xn)x_{n+1} = f(x_n). To make deductions about a sequence, you must write out enough terms to justify your conclusions. The number of terms required depends on the structure of the recurrence relationship. If a term depends on the previous two terms, you must see a repeat in two adjacent terms before a pattern can be confirmed.

Consider the sequence defined by: x0=1,x1=2x_0 = 1, x_1 = 2 and xn+2=xnxn+1x_{n+2} = |x_n - x_{n+1}| for n0n \geq 0.

The first few terms are: x0=1x_0 = 1 x1=2x_1 = 2 x2=12=1x_2 = |1 - 2| = 1 x3=21=1x_3 = |2 - 1| = 1 x4=11=0x_4 = |1 - 1| = 0 x5=10=1x_5 = |1 - 0| = 1 x6=01=1x_6 = |0 - 1| = 1 x7=11=0x_7 = |1 - 1| = 0

While the first four terms (1, 2, 1, 1) might suggest a simple repetition, continuing the sequence reveals a periodic pattern: 1, 2, 1, 1, 0, 1, 1, 0, 1, 1... After the initial terms, the sequence repeats the block (1, 0, 1) with a period of three.

Sigma Notation and the Fence Post Issue

When calculating the sum of a sequence, we use sigma (Σ\Sigma) notation. It is vital to pay close attention to the limits. For a sum n=0100xn\sum_{n=0}^{100} x_n, there are 101 terms, not 100. This is known as the fence post error: to find the number of terms between n=an = a and n=bn = b inclusive, the formula is ba+1b - a + 1.

To find the sum of the sequence above from n=0n=0 to n=100n=100, you should write out the terms to see how the patterns align with the indices: n=0100xn=x0+x1+x2+(x3+x4+x5)+(x6+x7+x8)++(x99+x100)\sum_{n=0}^{100} x_n = x_0 + x_1 + x_2 + (x_3 + x_4 + x_5) + (x_6 + x_7 + x_8) + \dots + (x_{99} + x_{100}) By grouping the sequence into blocks of three, where each block starting at x3kx_{3k} (for k1k \geq 1) follows the pattern (1, 0, 1), the total sum becomes easy to compute.

Arithmetic Progressions (APs)

An arithmetic progression is a sequence where each term is found by adding a constant, known as the common difference (dd), to the previous term. You must be able to recognise these sequences and use their standard formulae:

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

The sum formula can also be expressed as Sn=n2(u1+un)S_n = \frac{n}{2}(u_1 + u_n). This can be interpreted conceptually as: Sn=number of terms×average value of termsS_n = \text{number of terms} \times \text{average value of terms}

A special case is the sum of the first nn natural numbers (1,2,3,,n1, 2, 3, \dots, n). Here, a=1a = 1 and d=1d = 1, so the sum is: Sn=n2(1+n)S_n = \frac{n}{2}(1 + n)

Combining and Modifying Arithmetic Sequences

You can create new arithmetic series by combining existing ones. If you have two arithmetic series SnS_n (with first term aa and difference dd) and TnT_n (with first term AA and difference DD), their sum Sn+TnS_n + T_n forms a new arithmetic series. The first term of this new series is a+Aa + A and the common difference is d+Dd + D. This property extends to any linear combination of arithmetic sequences, such as αun+βvn\alpha u_n + \beta v_n, which will also be an arithmetic sequence.

Key takeaways

  • An arithmetic progression is defined by its first term aa and common difference dd.
  • The sum of an arithmetic series is the number of terms multiplied by the average of the first and last terms.
  • Always calculate the number of terms in a sum using the formula top limitbottom limit+1\text{top limit} - \text{bottom limit} + 1.
  • Linear combinations of arithmetic sequences, such as un+vnu_n + v_n, result in a new arithmetic sequence.
  • When investigating recurrence relations, write out enough terms to ensure the pattern repeats according to the order of the relation.
Tips

If a sequence question looks complex, write out the first five to ten terms. Most ESAT questions rely on you spotting a repeating pattern or a specific relationship that simplifies the arithmetic.

Cautions

Do not assume a sequence is periodic after only a few terms. In a second order recurrence relation where xn+2x_{n+2} depends on xn+1x_{n+1} and xnx_n, you must see two consecutive terms repeat to confirm the cycle.

Insight

The fact that the sum of two arithmetic progressions is another arithmetic progression reflects the linear nature of the nthn^{\text{th}} term formula un=dn+(ad)u_n = dn + (a-d). Because unu_n is a linear function of nn, adding two such functions results in another linear function.

Frequently asked questions

What is the difference between a sequence and a series?

A sequence is an ordered list of numbers, such as 2,4,6,82, 4, 6, 8. A series is the sum of those numbers, such as 2+4+6+82 + 4 + 6 + 8.

Can the common difference dd be negative?

Yes. If dd is negative, the terms in the arithmetic progression will decrease in value. The standard formulae for unu_n and SnS_n still apply.

How do I avoid the fence post error in sigma notation?

Always add one to the difference between the upper and lower limits. For r=515ur\sum_{r=5}^{15} u_r, there are 155+1=1115 - 5 + 1 = 11 terms.

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.