Sequences and Series Basics: Sigma Notation, Geometric & Arithmetic

Sequences and Series Basics

🧮 Sequences and Series Basics: Sigma Notation, Geometric & Arithmetic

Right—sequences and series. This is one of those topics where students usually nod along confidently… right up until sigma notation appears and suddenly everyone’s pretending to check their calculator while quietly wondering, “Wait—why are there three numbers above the Σ?” Don’t worry. Once you slow the whole thing down, the patterns reveal themselves. And honestly, sequences are some of the A Level Maths concepts you must know because they pop up everywhere: proof, modelling, binomial work, even in bits of mechanics.

So let’s unpack this without rushing. Expect a few pauses, because I’m going to talk through this the way I do at the board—with the occasional “hang on—let me rewrite that cleaner.”

 🔙 Previous topic:

Previously, we looked at Logarithms & Exponentials: Modelling Growth and Decay Problems, which links neatly into sequences because both topics rely on recognising patterns over time.

📘 Exam Context

Sequences & series questions appear reliably across the pure papers because they test:

  • pattern recognition

  • algebraic manipulation

  • using explicit vs recursive forms

  • spotting geometric vs arithmetic behaviour

  • sigma notation fluency

  • proof methods (induction and algebraic reasoning)

Students lose the most marks when:

  • they mix up geometric and arithmetic

  • they start formula substitution before identifying the sequence type

  • they forget to check whether the sequence starts at n=0, n=1, or something weird

  • they use the wrong version of the geometric sum formula

  • they mis-handle negative common ratios

Let’s walk through this slowly—and a bit messily—so it feels natural rather than robotic.

📏 Problem Setup

Keep a simple example in mind while we talk:

Arithmetic pattern example:
u_n = 7 + 3(n – 1)

Geometric pattern example:
u_n = 5 \cdot 2^{n-1}

Sigma example:
\sum_{k=1}^{5} (2k + 1)

We’ll orbit around these as we build up the methods.

🧠 Key Ideas Explained

🌍 Step 1 — What actually counts as a “sequence”?

Students often jump straight into formulas, but it helps to pause and define the thing itself.

A sequence is an ordered list:

u_1,; u_2,; u_3,;\dots

But the key is how they’re generated:

  • Explicit definition:
    u_n = 4n + 1
    You plug n in directly. Easy.

     

  • Recursive definition:
    u_1 = 5,\quad u_{n+1} = u_n + 2
    You build the sequence step by step.

This distinction matters because recursion shows up in modelling and induction proofs. Explicit formulas are quicker in calculations, but recursive ones feel more “behavioural,” if that makes sense.

🟨 Step 2 — Arithmetic sequences (constant difference)

An arithmetic sequence has:

u_{n+1} – u_n = d

Every term increases (or decreases) by the same amount.

Formula:

u_n = a + (n-1)d

Example with numbers:

Take a = 7 and d = 3.

Then:

u_n = 7 + 3(n – 1)

And the first few terms:

7,;10,;13,;16,;\dots

Nothing fancy—but students often forget that the “(n–1)” is essential. Too many jump straight to u_n = a + nd and lose marks.

Sum of first N terms:

S_n = \frac{n}{2}(2a + (n-1)d)

or the alternative:

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

where l is the last term.

Use whichever matches the numbers easily.

🟥 Step 3 — Geometric sequences (constant ratio)

A geometric sequence has:

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

Formula:

u_n = ar^{,n-1}

Example:

u_n = 5 \cdot 2^{n-1}

So the terms go:

5,;10,;20,;40,;\dots

Now—students often panic when r is negative or fractional. Let me just say: it’s fine. It just means the sequence oscillates or shrinks. For example:

u_n = 3(-\tfrac12)^{n-1}

This alternates sign every term but is still geometric.

Sum of first n terms:

S_n = \frac{a(r^n – 1)}{r – 1}\quad (r \neq 1)

I know some textbooks flip the formula to:

S_n = \frac{a(1 – r^n)}{1 – r}

They’re equivalent—just pick whichever avoids sign mistakes.

Infinite geometric sum (exam favourite):

S_\infty = \frac{a}{1 – r}\quad \text{if } |r| < 1

If |r| ≥ 1, there is no finite sum.
Students forget this and try to compute infinity incorrectly.

🪜 Step 4 — Sigma notation demystified

This is the moment students tense up, but let’s de-clutter it.

Example:

\sum_{k=1}^{5} (2k + 1)

This means:

  • Start at k = 1

  • Stop at k = 5

  • Plug each k into (2k + 1)

  • Add the results

So:

(3 + 5 + 7 + 9 + 11)

Sigma is not scary—it’s just polite shorthand.

But examiners love tricking you with strange starting values:

  • starting at k = 0

  • starting at k = 4

  • ending at 2n

  • splitting sums

If the index changes, you’re allowed to re-index. It’s messy but valid.

💡 Step 5 — Turning sequences into sums (the bit people rush)

Suppose:

u_n = 4n – 1

What’s:

\sum_{n=1}^{20} u_n?

You could expand… but please don’t.
Just recognise:

  • it’s arithmetic

     

  • a = 3

     

  • d = 4

     

Then:

S_{20} = \frac{20}{2}(2\cdot 3 + 19\cdot4)

Always identify the sequence type first.
Once you do that, the formulas almost drop into place naturally.

This is a huge part of A Level Maths revision made simple — knowing which formula to choose without overthinking.

📐 Step 6 — Proof with sequences (light induction)

You don’t need full-blown induction for every question, but examiners love throwing:

“Prove that
u_n = 3\cdot 2^n – 1
for all n.”

Process:

  1. Show it holds for n = 1

  2. Assume it holds for n = k

  3. Show it holds for n = k+1

  4. Conclude by induction

Induction is not difficult—you’re just showing the formula reproduces itself correctly.

📌 Worked Example — Full walkthrough with commentary

Let’s do something exam-style.

A sequence is defined by:

u_1 = 12,\quad u_{n+1} = 0.75u_n

(a) Find an expression for u_n

Right, so this is clearly geometric.
Ratio r = 0.75
First term = 12

Formula:

u_n = 12(0.75)^{n-1}

(b) Find the sum of the first 10 terms

Since |r| < 1, everything behaves nicely.

Use:

S_n = \frac{a(1 – r^n)}{1 – r}

So:

S_{10} = \frac{12(1 – 0.75^{10})}{1 – 0.75}

You don’t need to simplify unless the question asks.
Method marks matter more.

(c) Show that the infinite sum exists and find its value

Because |0.75| < 1, the sequence converges.

So:

S_\infty = \frac{12}{1 – 0.75} = 48

And yes—students often forget that “exists” means “because |r| < 1.”
Write it explicitly.

❗ Common Errors & Exam Traps

  • Using arithmetic formulas on geometric sequences

  • Forgetting that n starts at 1 (or worse, at 0)

  • Using the wrong geometric sum formula

  • Mixing up n and n−1

  • Assuming all sigma expressions start at 1

  • Forgetting that infinite sums only exist for |r| < 1

  • Forgetting to write a justification for convergence

  • Expanding sigma sums manually (painful and slow)

  • Dropping minus signs in geometric formulas

A subtle one:
Students forget that (n−1) is part of the geometric formula because the first term corresponds to n = 1.
Removing it shifts everything.

🌍 Real-World Link

Sequences appear in population models, financial modelling, computer algorithms (like recursion depth), network design, random processes, physics… basically anywhere something develops in steps. Sigma notation lets you summarise complicated adding processes concisely.

🚀 Next Steps

If the distinction between arithmetic and geometric still feels slippery—or if sigma notation keeps derailing your working—the A Level Maths Revision Course for 2026 success breaks each sequence type down with loads of intuitive examples and worked solutions.

📏 Recap Table

  • Arithmetic → constant difference

  • Geometric → constant ratio

  • Arithmetic sum → S_n = \frac{n}{2}(2a+(n-1)d)

  • Geometric sum → S_n = \frac{a(1-r^n)}{1-r}

  • Infinite sum → \frac{a}{1-r} (only if |r| < 1)

  • Sigma → shorthand for adding patterned terms

  • Identify sequence type before applying formulas

👤Author Bio – S Mahandru

I’ve taught sequences and series for years, and the big breakthrough for most students is realising that 90% of the difficulty is identifying the type of sequence. Once that’s done, the formulas practically choose themselves.

 🧭 Next topic:

❓ Questions Students Always Ask

Do I need to expand sigma expressions?

 Not usually — and honestly, most students waste far too much time doing that. Expanding term-by-term is fine when the expression is tiny, but the moment you hit something like \sum_{k=1}^{40}(3k-2), expanding becomes slow, error-prone, and basically unnecessary. Examiners want to see that you can recognise whether the underlying pattern is arithmetic or geometric, because that determines which formula you should be using. If you rely on expansion, you miss the whole point of sigma notation: it turns repeated patterns into something compact and structured. So the trick is to train your eye to see the type first — once you know the pattern, the sum formula does the heavy lifting for you.

 It’s absolutely fine — starting at 0 is completely legitimate — but it does change the rhythm of the sequence, and students often trip here without noticing. The safest method is to plug in the first value the index gives you (even if it feels weird) and check what the actual first term looks like. If the question feels awkward to handle, you can re-index it by shifting everything by +1 or −1 so the pattern starts somewhere more familiar. The key is that re-indexing doesn’t change the sum; it just makes it friendlier to work with. As long as you track the shift carefully, this is a fully acceptable method in exams — and it actually reduces mistakes once you get confident with it.

Because the sequence has to shrink for the sum to settle — and this is the bit students often memorise but don’t really understand. If |r| < 1, then r^n gets smaller and smaller until it’s basically zero, so every new term adds less and less to the total. The sum stabilises because the tail of the sequence fades out. But if |r| ≥ 1, the terms either stay the same size, grow, or bounce back and forth without ever calming down — meaning the total can’t possibly settle to a finite value. Thinking of the infinite sum as “the limit of all partial sums added together” helps: if the sequence doesn’t shrink, the limit simply cannot exist.