14  Patterns and sequences

When the next step follows a rule

You decide to save £20 a week. After one week: £20. After two weeks: £40. After ten weeks: £200. You didn’t need a formula for that — you just kept adding twenty.

A chain message says: send this to three friends. Each of those three sends it to three more. After one round: 3 people. After two rounds: 9 people. After three rounds: 27 people. That one grows differently. Faster. Worryingly faster.

Both of those are sequences. The first adds the same amount each time. The second multiplies by the same amount each time. Knowing which kind you’re looking at — and being able to jump straight to any term without listing all the ones before it — is what this chapter is about.

14.1 What makes a sequence a sequence

A sequence is a list of numbers in a definite order, where each position has exactly one value. Position 1 has a value. Position 2 has a value. Position \(n\) has a value. The order matters — you can’t shuffle the terms and call it the same sequence.

What makes a sequence useful is when there’s a pattern: a rule that connects each term to the one before it, or better yet, a rule that connects any term directly to its position number.

That second kind — where you can calculate any term from its position alone — is a function. You put a position in, you get a value out. That idea is one of the most important in all of mathematics, and sequences are where it shows up first in a concrete, tangible way.

For now: spot the pattern, name the rule, find any term.

14.2 What the notation is saying

We write the terms of a sequence as:

\[a_1, a_2, a_3, \ldots, a_n\]

Read that as: “a-one, a-two, a-three, up to a-n.” The letter \(a\) names the sequence; the subscript number is the position. So \(a_1\) — read “a-one” — is the first term, and \(a_n\) — read “a-n” — is the term at position \(n\), wherever that happens to be.

Two sequences, two different rules:

  • Arithmetic sequences add the same amount each step. That fixed amount is called the common difference, written \(d\).
  • Geometric sequences multiply by the same amount each step. That fixed multiplier is called the common ratio, written \(r\).

14.3 Arithmetic sequences

14.3.1 Recognising one

Look at the gaps between consecutive terms. If the gap is always the same, it’s arithmetic.

\[3, \; 7, \; 11, \; 15, \; 19, \ldots\]

The gap is 4 every time. So \(d = 4\) and this is arithmetic.

\[100, \; 94, \; 88, \; 82, \ldots\]

The gap is \(-6\) every time. So \(d = -6\). A decreasing sequence still counts — the difference is just negative.

14.3.2 The nth term formula

Listing terms one by one works fine if you only want the first few. But what if you want the 50th term? You don’t want to list 50 items.

Notice what’s happening with each term:

Position Term Working
1 \(a_1\) just the starting value
2 \(a_1 + d\) added the difference once
3 \(a_1 + 2d\) added the difference twice
4 \(a_1 + 3d\) added the difference three times
\(n\) \(a_1 + (n-1)d\) added the difference \(n - 1\) times

The pattern: to get to position \(n\) from position 1, you add \(d\) exactly \((n - 1)\) times. So:

\[a_n = a_1 + (n - 1)d\]

Read that aloud: “the nth term equals the first term, plus n minus one lots of the common difference.”

The \((n - 1)\) looks odd at first. Here’s why it isn’t: at position 1 you add the difference zero times, at position 2 you add it once, at position \(n\) you add it \(n - 1\) times. The count of additions is always one less than the position.

Interactive: Arithmetic sequence builder. Set the first term and common difference. The dot plot shows the first 10 terms — notice the points fall on a straight line.

14.4 Worked examples — arithmetic

Example 1 (sci). Bacterial measurements are taken every 4 hours starting at hour 0. The recorded counts (in thousands) are: 12, 15, 18, 21, …

The question is: what is the count at hour 36?

First, work out which measurement number that is. Hour 0 is measurement 1, hour 4 is measurement 2, and so on — each measurement is 4 hours after the previous one. So hour 36 is measurement number \(\frac{36}{4} + 1 = 10\).

Now check whether the sequence is arithmetic: \(15 - 12 = 3\), \(18 - 15 = 3\), \(21 - 18 = 3\). Yes, \(d = 3\).

\[a_{10} = 12 + (10 - 1) \times 3 = 12 + 27 = 39\]

The count at hour 36 is 39 thousand. (This is arithmetic growth — constant addition. Real bacterial growth is geometric, but the measuring interval can create arithmetic-looking data over short spans.)


Example 2 (biz). A gamer earns 150 points for completing level 1. Each subsequent level awards 25 more points than the previous one. How many points does level 18 award?

Here \(a_1 = 150\) and \(d = 25\).

\[a_{18} = 150 + (18 - 1) \times 25 = 150 + 425 = 575\]

Level 18 awards 575 points.


Example 3 (comp). A programmer is adding rows to a triangle pattern: row 1 has 1 tile, row 2 has 3 tiles, row 3 has 5 tiles.

The sequence is 1, 3, 5, 7, … with \(a_1 = 1\) and \(d = 2\).

How many tiles does row 20 need?

\[a_{20} = 1 + (20 - 1) \times 2 = 1 + 38 = 39\]

Row 20 needs 39 tiles. A programmer building this pattern in a loop would use exactly this calculation to allocate memory or set loop bounds.


Example 4 (eng). A steel cable loses 3mm of useful length each time it’s re-terminated. It starts at 500mm. After how many re-terminations is it shorter than 450mm?

The sequence is \(500, 497, 494, \ldots\) with \(a_1 = 500\) and \(d = -3\).

We want \(a_n < 450\):

\[500 + (n - 1)(-3) < 450\] \[-(n-1) \times 3 < -50\] \[(n - 1) \times 3 > 50\] \[n - 1 > 16.67\] \[n > 17.67\]

So after the 18th re-termination the cable is below 450mm. Check: \(a_{18} = 500 + 17 \times (-3) = 500 - 51 = 449\). Yes.

14.5 Geometric sequences

14.5.1 Recognising one

Look at the ratios between consecutive terms instead of the gaps. If the ratio is always the same, it’s geometric.

\[2, \; 6, \; 18, \; 54, \ldots\]

Divide each term by the previous one: \(6 \div 2 = 3\), \(18 \div 6 = 3\), \(54 \div 18 = 3\). The ratio is always 3, so \(r = 3\).

\[80, \; 40, \; 20, \; 10, \ldots\]

Each term is half the previous one: \(r = 0.5\). A shrinking sequence — the ratio just has to be positive and consistent.

14.5.2 The nth term formula

The same logic as arithmetic, but with multiplication:

Position Term Working
1 \(a_1\) starting value
2 \(a_1 \times r\) multiplied once
3 \(a_1 \times r^2\) multiplied twice
4 \(a_1 \times r^3\) multiplied three times
\(n\) \(a_1 \times r^{n-1}\) multiplied \(n - 1\) times

So:

\[a_n = a_1 \times r^{n-1}\]

The \((n - 1)\) is there for the same reason as in arithmetic: at position 1 you multiply by \(r\) zero times. Any number raised to the power zero equals 1 — so \(r^0 = 1\), and the first term is just \(a_1 \times 1 = a_1\). Each step up adds one more multiplication.

Connection to Vol 1 Ch 3: if this looks like the compound growth formula, that’s because it is. Compound interest is a geometric sequence. Each year’s balance is the first year’s amount multiplied by the growth factor \((1 + \text{rate})\), raised to the number of years. The structure is identical.

Interactive: Sequence explorer. Toggle between arithmetic and geometric. Adjust the first term and the common difference or ratio. The dot plot makes the shape of growth immediately visible — linear versus curved.

14.6 Worked examples — geometric

Example 5 (biz). A video gets 200 views on day 1. Each day it gets three times as many views as the day before. How many views on day 6?

Here \(a_1 = 200\) and \(r = 3\).

\[a_6 = 200 \times 3^{6-1} = 200 \times 3^5 = 200 \times 243 = 48{,}600\]

48,600 views on day 6. That’s the shape of viral growth — it looks manageable for the first few steps, then becomes enormous.


Example 6 (sci). A radioactive sample has 640 micrograms at the start. Each hour, it retains half its mass. How much remains after 5 hours?

Here \(a_1 = 640\) and \(r = 0.5\). Term 1 is at \(t = 0\) (the start), so after 5 hours we’re looking at term 6.

\[a_6 = 640 \times 0.5^{6-1} = 640 \times 0.5^5 = 640 \times \frac{1}{32} = 20\]

20 micrograms remain after 5 hours.

14.7 Telling them apart

The question to ask: does the sequence add a fixed amount each step, or multiply by a fixed amount?

Check Arithmetic Geometric
What’s constant? the difference between terms the ratio between terms
Each term is… previous term \(+ d\) previous term \(\times r\)
On a graph it looks like… a straight line a curve
Formula \(a_n = a_1 + (n-1)d\) \(a_n = a_1 \times r^{n-1}\)

If neither test passes — the differences aren’t constant and neither are the ratios — the sequence isn’t arithmetic or geometric. There are other kinds, but these two cover most of what you’ll see at this level.

14.8 Sequences as functions

Here’s the thing to take away from this chapter.

A sequence is a function. You feed in a position number — 1, 2, 3, …, \(n\) — and the formula gives you back a value. One input, one output, a definite rule. That’s the definition of a function.

For an arithmetic sequence with \(a_1 = 5\) and \(d = 3\):

\[a_n = 5 + (n-1) \times 3 = 5 + 3n - 3 = 3n + 2\]

That last form — \(3n + 2\) — should look familiar. It’s a linear expression. The position \(n\) plays the same role as \(x\) in a linear equation. If you plotted the terms on a graph with position on the horizontal axis and value on the vertical, you’d get points lying on a straight line.

Geometric sequences, plotted the same way, give points lying on a curve — the same kind of exponential curve you saw in compound growth.

The bigger idea — that a rule can take any input and return a predictable output — is what Chapter 4 is about. Sequences are the clearest introduction to it because the inputs are always whole numbers, so you can list them and see the pattern directly. When Chapter 4 generalises to real-number inputs, you’ll already have the idea.

14.9 Where this goes

Chapter 4 — Graphing relations takes the connection from this chapter seriously. If \(a_n = 3n + 2\) is a function of \(n\), then it has a graph. You’ll learn to draw that graph, read information off it, and understand what the slope and intercept actually mean. Arithmetic sequences produce straight-line graphs; geometric sequences produce curves. Seeing them visually makes the difference between the two types immediately obvious.

Volume 4 — Sequences and series returns to sequences at a higher level. A series is what you get when you add up the terms of a sequence: how much have you saved total after \(n\) weeks? How many people has the chain message reached in total? The formulas become more involved, but the foundation — arithmetic or geometric, position determines value — is exactly what this chapter builds.

Where this shows up

  • A financial analyst projecting investment returns is working with a geometric sequence — each period’s value is the previous one scaled by a growth factor.
  • A software engineer estimating how long an algorithm takes as the input grows is often asking whether the cost is arithmetic (grows linearly) or geometric (grows exponentially).
  • A biologist tracking bacterial colony doublings is reading a geometric sequence, even if the lab notebook just shows raw counts.
  • A structural engineer numbering equally-spaced sensor stations along a bridge is building an arithmetic sequence into the measurement system.

The difference between “adds the same amount” and “multiplies by the same amount” is the difference between manageable and overwhelming. Recognising which one you’re dealing with is a genuinely useful skill.

14.10 Exercises

These are puzzles. Each has a clean answer, but the interesting part is identifying the type of sequence and setting up the formula before you calculate. Don’t just list terms.

  1. A social media account gains 40 followers per day. It starts with 120 followers. How many followers does it have after 3 weeks (21 days)? (Identify: arithmetic or geometric? Write the formula, then calculate.)
  1. The sequence 5, 9, 13, 17, … — what is the 25th term?
  1. A ball is dropped from 160cm. Each bounce reaches exactly 75% of the previous height. How high is the 5th bounce? Round to the nearest centimetre.
  1. A sequence begins 3, 6, 12, 24, …
    1. Write the formula for the nth term.
    2. Which term first exceeds 3,000?
  1. Exam scores in a practice series improve by 4 marks each attempt: 46, 50, 54, 58, … After how many attempts does a student first reach or exceed 80 marks?
  1. A fundraiser’s social posts are shared in a pattern. On day 1 it reaches 5 people. Each day it reaches 4 times as many people as the day before. On which day does it first reach more than 50,000 people?
  1. Two sequences both start at 10.
    • Sequence A: add 15 each term.
    • Sequence B: multiply by 1.5 each term.
    By the 10th term, which is larger? By how much?