Sequences, Recurrence Relations and Arithmetic Series
~50 min · WMA12 · 4.1
WMA12 · 4.1 · 50 min
A sequence can be handed to you two structurally different ways — a formula that computes any term directly, or a rule, , that only tells you how to get the next term from the one you already have — and almost every mark lost on this topic comes from treating the second kind like the first: applying a rule one time too many or too few, because "the 4th term" and "4 applications of the rule" are not the same count. Arithmetic sequences are the one case where both descriptions collapse into the same clean formula, , and the proof of where that formula — and its partner for the sum, — actually comes from is not optional background reading. The specification says outright that you are expected to be able to produce it.
Key terms in this lesson
Before you read on
Two or three questions on exactly what this lesson teaches. Being wrong here is fine — it's the fastest way to find out what to pay attention to next.
Two ways to describe a sequence — a formula, and a rule for the next term
Spec 4.1 names both. The first is a formula for the nth term: a rule like that computes any term directly from its position, with no need to know any of the others — plug in and is immediate. The second is a , written by the specification itself as : a rule for producing the next term from the current one. A recurrence on its own generates nothing — it needs a starting value, , to have something to apply itself to. is not a sequence; , is.
Notice the letter switch: the specification writes the general recurrence with , and writes arithmetic-specific formulae (spec 4.2, and the formula booklet) with . That is not this course normalising two sources into one convention — it is what the spec itself does, because 4.1 is deliberately general (the function could be anything: , , ), while 4.2 narrows to one specific, well-behaved case with its own dedicated letter and dedicated formula. Both notations mean the same thing structurally — a rule plus a starting value — and exam questions use whichever letter the question itself introduces.
Generating terms from a recurrence is direct substitution, repeated: given , compute , then , and so on. The one place this goes wrong is counting — reaching the nth term from the first takes exactly applications of , not , because is already given for free and needs no application of the rule to exist. Miscounting this by one is the single most common error type in this whole topic, on both sides of the count (applying the rule once too often or stopping one term short), and it is worth writing every intermediate term out explicitly — — rather than trying to track the count mentally.
Arithmetic sequences, and three families of behaviour
An is the specific case where the recurrence has one particular shape: for some fixed constant , the . Every term is obtained from the last by adding the same fixed amount — not multiplying, not squaring, not anything else, just adding , every single time. That single constraint is what makes the whole topic solvable with clean formulae rather than needing the general machinery of 4.1.
Spec 4.3 names three ways a sequence can behave, independent of whether it happens to be arithmetic. A sequence is increasing if for every — every term is strictly bigger than the one before, with no exceptions anywhere in the sequence. It is decreasing if for every , the mirror condition. And it is periodic with period if for every — the sequence repeats its exact pattern of values every terms, forever, not just once by coincidence partway through. An arithmetic sequence with is always increasing and one with is always decreasing (the constant addition never lets the direction reverse); an arithmetic sequence with is constant, which is periodic with period 1 but not increasing or decreasing under the strict inequalities above. A periodic sequence, by contrast, is almost never arithmetic — a genuinely repeating pattern needs the terms to come back down as often as they go up, which a fixed constant addition cannot do unless that addition is exactly zero.
These three labels are properties of the whole sequence, checked for every — not a description of what happens to look true for the first few terms you happen to write down. A sequence that increases for its first five terms and then decreases is neither increasing nor decreasing by this definition; it is simply a sequence that is not monotonic. Confirming "increasing" or "decreasing" rigorously means showing the defining inequality holds in general, algebraically, not showing it holds for a handful of examples — the same discipline a proof by exhaustion (spec 1.2 of this unit) explicitly forbids in the other direction: checking finitely many cases proves nothing about a claim that has to hold for every .
Mechanism
Why — it falls out of the recurrence, it is not a separate rule to learn
Start from the recurrence itself, , with first term , and apply it repeatedly rather than accepting the closed formula as given. . . . The pattern is exactly what "add every step" should produce: to reach from takes steps, each adding one more , so . This is not a coincidence discovered by trying a few cases and guessing the pattern — it is a direct consequence of what "arithmetic" was defined to mean in the first place, and it is the same -not- counting from the recurrence-relation teach block above, now packaged into a formula so that it never has to be counted by hand again. Two consequences follow directly. First, this is exactly why corresponds to rather than : the first term needs zero applications of the recurrence to exist, and the formula has to agree with that or it would be wrong at its own starting point. Second, an arithmetic sequence is fully determined by exactly two numbers, and — every other term is a deterministic consequence of those two, which is the reason a question that gives you two arbitrary terms of an arithmetic sequence (not necessarily the first two) is always secretly a simultaneous-equations question: two unknowns, two given data points, one linear system.
Mechanism
Why the sum formula works — a symmetry, not a fact to memorise
Spec 4.2 states plainly that the proof of should be known, not merely the formula itself — and the January 2020 examiner report on exactly this proof found it "surprisingly unusual to see a well set out, fully correct proof", with candidates struggling from the very first line. The proof itself is one idea, carried out once. Write the sum out in full, forwards: — note the last term is , not , for exactly the reason the mechanism above just established: reaching the nth term takes steps from the first. Now write the identical sum a second time, in reverse order: . Nothing has changed — it is the same set of numbers, added in the opposite order, so it is still equal to . The move that makes the proof work is adding these two versions together, term by term, in their current positions: the first term of the first version pairs with the first term of the second version, and so on down the line. The first pairing is with , summing to . The second pairing is with , summing to again — the on one side is exactly cancelled by the on the other, because as you step forward through the first version you step backward through the second, by the same amount, every time. Every pairing produces the same total, , and there are of them — one for each of the terms in the original sum. So adding the two versions gives , and dividing by 2 gives the formula. Nobody had to guess ; it is what falls out of pairing the smallest term with the largest, the second-smallest with the second-largest, and so on, and finding — because the sequence moves by a constant step — that every pair happens to land on the same total. This is also, structurally, the identical trick behind the more famous version of it: summing the first natural numbers, , is exactly this proof with and , giving — the specific case the spec names separately ("the sum of the first n natural numbers") precisely because it is common enough to deserve its own recognition, not because it needs a different argument.
Worked, in full
Two given terms, secretly a simultaneous-equations question — finding , , and then
- 01
An arithmetic sequence has and . Translate both into equations using : and . Two given terms of an arithmetic sequence are always two linear equations in the two unknowns and — the structure the question hides is exactly this, whatever cover story surrounds it.
Earns: M1 — forms two correct linear equations in and from the two given terms, using the correct power of for each (4 for the 5th term, 11 for the 12th).
- 02
Subtract the first equation from the second to eliminate , since appears identically in both: , so , giving .
Earns: M1 — a correct method for eliminating one unknown from the pair of equations, dependent on both equations from stage 1 being correctly formed.
- 03
Substitute back into either original equation: , so . Check against the other equation, which was not used to find this value: . ✓
Earns: A1 — both and correct. The check against the unused equation is not itself a mark-scheme line, but it costs one line of arithmetic and would have caught a slip immediately, before it propagated into every later part of the question.
- 04
Substitute , , into the sum formula: .
Earns: M1 A1 — method mark for correct substitution of the newly-found and into the sum formula, earned on their own stage-3 values with no 'ft' qualifier needed (M marks are for 'knowing a method and attempting to apply it', which does not depend on whether the values applied are themselves correct — 'ft' attaches only to A and B marks, never to M marks — so an arithmetic slip in stage 3 would still leave this method mark available), and the accuracy mark for the correct final value.
Complete it yourself
Complete the chain — find , and given and
- 01
Translate the two given terms into equations using : and .
- 02
Subtract to eliminate : , so , giving .
Same question, every valid method
An arithmetic series has first term 3 and common difference 2. Given that the sum of the first terms is 195, find the value of . (VERIDIAN-original question — not a reproduction of any past-paper question.)
2 valid methods · every one reaches · 3 marks available
- 01M1
. Setting : .
Method mark for correctly forming a three-term quadratic equation in by substituting and into the sum formula and setting the result equal to the given total. A sum-equals-a-target-value question is, underneath, exactly the same quadratic-solving skill covered in the quadratics topic — the unknown just happens to be called instead of .
- 02A1
, so or .
Accuracy mark for both roots of the quadratic, found by factorisation. The general principles' condition for the method mark on a three-term quadratic applies unchanged here: the brackets must multiply back to the correct leading coefficient (1) and correct constant (), which does, since .
- 03A1
counts a number of terms, so it must be a positive integer: is rejected, leaving .
Final accuracy mark, and the one this question type actually tests. A quadratic in always produces two mathematical roots, but only one of them can answer a question about how many terms a series has — dropping this line is the arithmetic-series version of forgetting a domain restriction on a parameter question.
Fastest when a factor pair is visible by inspection: , with the two factors 2 apart, is exactly the kind of clean split worth trying first once the quadratic is written down. As always, the risk is searching for factors that are not there — if nothing clean turns up within a few tries, switch to the formula rather than keep guessing.
Marked, line by line
(a) An arithmetic series has first term and common difference . Prove that the sum of the first terms is given by . (3) (b) A different arithmetic series has first term 8 and common difference . Find , the sum of the first 20 terms of this series. (3) — Part (a) is this exact question, verbatim: January 2020 Q8(i) (WMA12_01, `P60571RA`), 3 marks as printed on the paper — B1 M1 A1*, confirmed against the real mark scheme (`WMA12_01_2001_MS`) via both `pdftotext -layout` and `-raw` extraction, which agree exactly. Part (b) is an original numerical follow-up, not a reproduction of any past-paper question — no real mark scheme exists for it, and its marks are modelled on verified general conventions per the flag block below.
6 marks available
(a) — 3 marks
- 01B1
Independent mark for an expression for Sₙ in a minimum of 3 terms in a and d, including the first and last terms, with the correct final term a + (n − 1)d — not a + nd. This is precisely the line the January 2020 examiner report (Q8(i), the real question this part reproduces) flags as the most commonly wrong part of this exact proof: 'a surprising proportion of candidates struggled to write a correct expression of Sₙ at the start of their proof, often having the last term incorrect.'
- 02M1
Reversing the order and adding term-by-term to the original: , added to .
Method mark for attempting to reverse the sum and add it to the original, with at least two matching pairs shown to establish the pattern — the real mark scheme's own wording ('Attempts to reverse their sum and add terms. Must include at least two pairs of matching terms...') covers reversing and adding together as ONE method mark, not two; the same report records this exact step as sometimes skipped entirely: 'Others failed to reverse the terms in the sum correctly, or at all.'
- 03A1*
Every pair sums to , the same value each time, and there are such pairs, so . Dividing by 2: , as required.
Accuracy mark, answer given (ag/cso) — the real mark scheme's own wording is 'Correctly achieves the given result including the intermediate line 2S=n{2a+(n-1)d}', ONE mark covering both reaching that intermediate line and the final division, with no separate mark for either half. Because the result is printed on the question, this mark requires every line above to be correct and complete, with at least 3 terms shown for the sum and its reverse — a proof that reaches a different-looking expression, even one algebraically equal to the printed form, does not earn it without also showing that equivalence explicitly.
(b) — 3 marks
- 101M1
, with , , :
Method mark for correct substitution into the sum formula with all three values — a, d and n — correctly identified.
- 102A1
Correct simplification of the bracket. 19 × (−3) = −57 — a genuine place to lose the mark by mishandling the sign of a negative common difference.
- 103A1
cao — correct answer only. A negative total is a legitimate, expected result once d is negative and enough terms have been summed for the negative terms to dominate — it is not, on its own, a sign that a mistake was made.
In your own words
In one sentence: why does proving require writing the series twice — once forwards, once in reverse — rather than just adding the terms in the order they were written?
Named traps
- sum-proof-last-term-off-by-one
- Confirmed directly on the standard sum-formula proof: "a surprising proportion of candidates struggled to write a correct expression of Sₙ at the start of their proof, often having the last term incorrect" (Jan 2020, Q8(i)). The fix is the same mechanism taught earlier in this lesson: reaching the nth term from the first takes (n − 1) steps of the recurrence, so the last term of an n-term series is a + (n − 1)d, never a + nd.
- sum-proof-reversal-skipped
- Confirmed on the same question: "Others failed to reverse the terms in the sum correctly, or at all" (Jan 2020, Q8(i)). Without the reversed copy, there is nothing for the forward copy to pair against, and the whole argument — every pair summing to the same constant — has no pairs to point at. This step is not optional decoration on the proof; it is the entire mechanism.
- sum-proof-insufficient-terms-shown
- Confirmed on the same question: candidates "did not display a sufficient number of terms to make subsequent steps in their proof to complete" (Jan 2020, Q8(i)). Two terms at each end plus an ellipsis — — is the minimum that actually shows the pattern; a single "..." with no visible terms either side of it gives an examiner nothing to check the pairing against.
- induction-attempted-for-standard-proof
- Confirmed on the same question: "Attempts at proof by induction were also seen in a few cases, though little progress was made in most of these" (Jan 2020, Q8(i)). Induction can, in principle, prove this result, but it is not the proof the specification names, and the report records it as the less successful choice in practice. Where a question asks to "prove the standard formula," the pairing argument is the direct, expected route.
- sum-proof-assumes-the-result
- Confirmed on the same question: "Some candidates either started with, or used something that they were trying to prove, e.g. starting with , or attempting to use a summation formula that is a generalisation of the result they needed to show" (Jan 2020, Q8(i)). This scores zero on an "ag" (answer given) proof no matter how cleanly the rest of the working is presented, because it assumes the very fact being proved rather than deriving it — a "prove that" question can never legitimately start from a form of its own target result. The only safe starting point is the definition of the series itself, written out term by term, exactly as the mechanism block above does.
- sum-proof-pairing-fails-for-odd-n
- Confirmed on the same question: some candidates instead tried pairing terms within a single copy of the sum — first-plus-last, second-plus-second-to-last, and so on — "but they did not give due consideration to what happens when there are an odd number of terms, and were unable to score the accuracy mark as a result" (Jan 2020, Q8(i)). An odd number of terms leaves one unpaired middle term this method has no clean way to handle, which is exactly why the write-forwards/write-backwards/add version taught in this lesson is the safer standard route — it pairs the full sum against a full reversed copy of itself, so it never needs to be even and never has a leftover term to account for separately.
- arithmetic-and-geometric-formulas-confused
- Confirmed as a recurring, named error category across at least two series (June 2019 and October 2020): candidates reach for the wrong series formula mid-question — applying the geometric sum formula to an arithmetic series, or the reverse — because the two topics sit close together and use similarly-shaped notation. The one-line check that catches it before it starts: an arithmetic sequence has a constant DIFFERENCE between consecutive terms (, the same value every time); a geometric one has a constant RATIO instead. Confirm which quantity is actually constant before reaching for either sum formula.
Retrieval — with feedback on every choice
An arithmetic sequence has and . What is the common difference ?
A sequence is defined by and . What is the value of ?
The sequence defined by is . What is its period?
An arithmetic series has first term and common difference . Find .
In the standard proof that , why is the series written a second time in reverse order before the two versions are added?
- uₙ = a + (n−1)d. Term n from term 1 takes (n−1) steps, not n.
- Sₙ = ½n[2a+(n−1)d] = ½n(a+l), l = a+(n−1)d = last term. The (a+l) form needs no d.
- Sum proof: write forwards, write reversed, add — every pair totals 2a+(n−1)d, n pairs.
- Arithmetic: uₙ₊₁−uₙ = d, constant. Geometric (later): uₙ₊₁/uₙ = r, constant. Check which before choosing a formula.
- Increasing: uₙ₊₁>uₙ ∀n. Decreasing: uₙ₊₁<uₙ ∀n. Periodic, period k: uₙ₊ₖ=uₙ ∀n.
Not affiliated with or endorsed by Pearson Edexcel. Every quotation and figure attributed to a mark scheme or examiner report in this lesson was independently verified against the primary Pearson document, not carried over from prior course material. One question in this lesson is a real, verbatim reproduction of a genuine Pearson question, marked accordingly: the marked-solution's part (a) is January 2020 Q8(i) (WMA12_01, Publications Code `P60571RA`), reproduced with its own real B1/M1/A1* mark scheme, 3 marks as printed on the question paper. Every other question in this lesson — prequestion, worked chain, chain drill, method comparison, marked-solution part (b) and MCQ alike — is VERIDIAN-original wording, inspired by confirmed real question types, never a reproduction of a real Pearson question; and because those questions are original, their per-line mark allocations are modelled on verified mark-scheme conventions (what M, A and B marks mean, when follow-through and cso/ag apply, which routes earn the method mark for a three-term quadratic) rather than transcribed from a real mark scheme, which for an original question does not exist.
An arithmetic sequence has and . What is the common difference ?
Correct. , so , giving and . Check: — three steps of from to , matching applications of the common difference.
- B
This reports directly, as if that difference were itself, rather than — the total change across three steps, not the size of one step. Dividing by the number of steps (3, not 4) is the part that got skipped.
- C
This divides the total change (12) by 4 instead of 3 — using n itself instead of as the number of steps between and . There are only three steps between the 1st and 4th terms, not four.
- D
This divides itself (18) by 4, rather than dividing the change between and by the number of steps. is a rate of change between consecutive terms, not a fraction of any single term's value.
Traps tested: Total change reported as single step · N minus one treated as n · Term value divided instead of difference
A sequence is defined by and . What is the value of ?
Correct. , then . Both steps of the rule — double, then subtract 1 — have to be carried out in full each time; neither part of the rule is optional.
- B
This drops the "" on the first step only: , then . The recurrence has two operations chained together every single time it is applied, not just after the first term.
- C
This is , not — one application of the rule short. Reaching from needs the rule applied twice, and this stops after the first.
- D
This treats the sequence as if it were arithmetic, computing . There is no constant difference here — but — because this recurrence is not of the arithmetic form at all; it depends on itself, not just on a fixed step.
Traps tested: Recurrence operation dropped on first step · Recurrence applied one time too few · Non arithmetic recurrence treated as arithmetic
The sequence defined by is . What is its period?
Correct. — the pattern repeats every 2 terms, and for every : .
- B
Period 1 would mean every term is identical to the one before it ( for all n) — a constant sequence. This sequence alternates between two different values, so consecutive terms are never equal; the repeat only reappears every second term.
- C
is true here, but 4 is not the smallest gap at which the sequence repeats — it repeats after just 2 terms already, and repeating after 4 is simply a consequence of repeating after 2 (twice over). The period is the smallest such gap.
- DIt is not periodic, since the terms keep changing
A sequence can be periodic while its individual terms are not constant — periodicity means the pattern of values repeats exactly, not that the sequence stops changing. changes value every single term and is still periodic, with period 2.
Traps tested: Alternating mistaken for period one · Non minimal repeat length given · Periodicity confused with constancy
An arithmetic series has first term and common difference . Find .
Correct. . With a negative common difference, later terms in the series are negative and large enough in size to pull the total below zero — a negative sum here is a correct result, not a warning sign.
- B
This uses instead of inside the bracket: . The bracket needs the number of steps between the 1st and 25th terms, which is 24, not 25.
- C
This reaches the correct size but drops the negative sign somewhere in the working — likely by mishandling as . With negative, -style sign tracking is exactly where this question type is designed to catch a slip.
- D
This computes , which is not the sum formula at all — it multiplies the first term by the number of terms and then just adds once, rather than accounting for every term's own individual shift from .
Traps tested: N minus one treated as n · Negative common difference sign lost · Sum formula replaced with wrong expression
In the standard proof that , why is the series written a second time in reverse order before the two versions are added?
- So that every matched pair of terms — one from each version — sums to the same constant value, , letting the whole total be written as copies of that one number
Correct. Reversing means that as one version steps up through the sequence, the other steps down by the same amount at the same time, so every pairing lands on the identical total. That is the entire mechanism: without it, there is no reason the terms being added would combine into anything simpler than they already were.
- BSo that the negative terms cancel out
An arithmetic series does not need to contain any negative terms at all for this proof to work — it holds identically for a series of all-positive terms. The proof is about the pairs summing to a constant, not about cancellation of sign.
- CBecause the formula only works when is even
The formula holds for every positive integer , odd or even — try it on a 3-term or 5-term series and it still gives the correct total. The proof's pairing argument works regardless of parity; it does not require the terms to split into complete pairs with nothing left over.
- DTo turn the arithmetic series into a geometric one, which is easier to sum
Reversing the order of an arithmetic series produces another arithmetic series (with common difference instead of ) — it stays arithmetic throughout. Nothing about this proof involves a geometric series at any stage.
Traps tested: Reversal purpose confused with cancellation · Sum formula wrongly restricted to even n · Arithmetic and geometric formulas confused
Practice this for real
This site teaches the mechanism; the exam is sat on Pearson's own real questions. Go find and attempt these yourself — nothing here substitutes for actually sitting a timed paper.
Pearson's official past-papers portalSelect International Advanced Level → Mathematics → any series, then look for WMA12.
Up next
Geometric Series and the Sum to Infinity
An arithmetic sequence moves by adding the same amount every step; a geometric one moves by multiplying by the same amount every step. That single swap — +d becomes \times r — changes everything downstream, and changes it in ways that are derivable rather than arbitrary: the nth-term formula becomes u_n = ar^{n-1}, the proof of the sum formula stops working by reversing-and-adding and starts working by multiplying-and-subtracting, and something genuinely new appears that has no arithmetic counterpart at all. Add infinitely many terms of an arithmetic series and the total always runs away. Add infinitely many terms of a geometric series and, provided |r| < 1, it settles on a finite number — S_\infty = \frac{a}{1-r} — because each term is a fixed fraction of the one before it and the terms shrink toward nothing fast enough to leave a finite total behind. The specification asks for the proof of the finite sum formula by name, and examiners have said outright that students should know the standard proofs for both the arithmetic and the geometric series. This lesson derives both formulae, and derives the |r| < 1 condition rather than quoting it.
55 min