You are viewing a free preview of this lesson.
Subscribe to unlock all 10 lessons in this course and every other course on LearningBro.
Sigma notation (∑) provides a compact way to write the sum of a sequence of terms. The Greek capital letter sigma (∑) means "sum". This notation is used extensively in A-Level Mathematics (9MA0) and understanding it is essential for work with series.
The expression ∑ from r = 1 to n of f(r) means: add up f(r) for r = 1, 2, 3, ..., n.
| Component | Meaning |
|---|---|
| ∑ | "The sum of" |
| r | The index variable (also called the dummy variable) |
| r = 1 (below ∑) | The starting value of r |
| n (above ∑) | The final value of r |
| f(r) | The expression to be summed |
Write the sum 2 + 4 + 6 + 8 + ... + 100 using sigma notation.
Each term is 2r, where r goes from 1 to 50.
∑ (r = 1 to 50) 2r
Write the sum 1 + 4 + 9 + 16 + ... + 400 using sigma notation.
Each term is r², where r goes from 1 to 20.
∑ (r = 1 to 20) r²
Write the sum 3 + 5 + 7 + 9 + ... + 41 in sigma notation.
The rth term is 2r + 1. When r = 1: 3. When r = 20: 41.
∑ (r = 1 to 20) (2r + 1)
Evaluate ∑ (r = 1 to 5) (3r - 1).
Write out each term:
Sum = 2 + 5 + 8 + 11 + 14 = 40
Alternatively: this is an AP with a = 2, d = 3, n = 5. S(5) = 5/2 x (2 + 14) = 5/2 x 16 = 40. Same answer.
Evaluate ∑ (r = 1 to 4) r³.
= 1³ + 2³ + 3³ + 4³ = 1 + 8 + 27 + 64 = 100
You should know these standard results (they are in the formula booklet):
| Sum | Result |
|---|---|
| ∑ (r = 1 to n) 1 | n |
| ∑ (r = 1 to n) r | n(n + 1)/2 |
| ∑ (r = 1 to n) r² | n(n + 1)(2n + 1)/6 |
| ∑ (r = 1 to n) r³ | [n(n + 1)/2]² |
Find ∑ (r = 1 to 100) r.
Using the formula: 100 x 101 / 2 = 5050
Find ∑ (r = 1 to 20) r².
Using the formula: 20 x 21 x 41 / 6 = 17220 / 6 = 2870
These rules allow you to break down complex sums:
Rule 1: Constant factor — ∑ c x f(r) = c x ∑ f(r)
Rule 2: Sum/difference — ∑ [f(r) ± g(r)] = ∑ f(r) ± ∑ g(r)
Rule 3: Constant sum — ∑ (r = 1 to n) c = cn
Find ∑ (r = 1 to 50) (4r² + 3r - 2).
Split into parts: = 4 x ∑r² + 3 x ∑r - ∑2
= 4 x [50 x 51 x 101 / 6] + 3 x [50 x 51 / 2] - 2 x 50
= 4 x 42925 + 3 x 1275 - 100
= 171700 + 3825 - 100
= 175425
Sometimes the sum does not start at r = 1. To handle this:
∑ (r = m to n) f(r) = ∑ (r = 1 to n) f(r) - ∑ (r = 1 to m-1) f(r)
Find ∑ (r = 11 to 30) r.
= ∑ (r = 1 to 30) r - ∑ (r = 1 to 10) r
= 30 x 31 / 2 - 10 x 11 / 2
= 465 - 55
= 410
Find ∑ (r = 5 to 20) (2r + 1).
= ∑ (r = 1 to 20) (2r + 1) - ∑ (r = 1 to 4) (2r + 1)
For ∑ (r = 1 to 20) (2r + 1): = 2 x 20 x 21 / 2 + 20 = 420 + 20 = 440
For ∑ (r = 1 to 4) (2r + 1): = 2 x 4 x 5 / 2 + 4 = 20 + 4 = 24
Answer: 440 - 24 = 416
| Tip | Detail |
|---|---|
| Write out terms | If unsure, write out the first few terms to check your sigma expression |
| Use standard results | For sums involving r, r², r³, use the formulae rather than adding term by term |
| Starting index | If the sum starts at r = k (not 1), split into two sums starting from r = 1 |
| Dummy variable | The letter used (r, k, i) does not matter |
| Factorise | After using standard results, look to simplify and factorise your final answer |
Edexcel 9MA0 specification, Pure Mathematics — Sequences and series covers sigma notation for sums of series (refer to the official specification document for exact wording). Sigma notation is the language in which every series result on 9MA0 is written, so although the standalone sub-strand is small, fluency here is load-bearing across the whole specification. The Edexcel formula booklet provides arithmetic and geometric series sums in closed form; the standard results ∑r=1nr=21n(n+1) and ∑r=1nr2=61n(n+1)(2n+1) are not on the AS booklet but appear in the Year 2 / Further Mathematics booklet. AS candidates can derive the linear result from the arithmetic series formula; the quadratic result is taken as standard at A2 and Further. Sigma notation is examined synoptically with arithmetic and geometric series (where Sn=∑r=1nar), proof by induction (Further Mathematics — proving ∑r2 etc.), binomial expansion ((1+x)n=∑r=0n(rn)xr), integration as the continuous analogue (∫ ↔ Σ as Riemann sum limit), and statistics (∑xi, ∑xi2 underlie the mean and variance formulae printed in the formula booklet).
Question (8 marks): Evaluate r=1∑20(3r2−2r+5), using the standard results ∑r=1nr=21n(n+1) and ∑r=1nr2=61n(n+1)(2n+1).
Solution with mark scheme:
Step 1 — split the sum using linearity.
∑r=120(3r2−2r+5)=3∑r=120r2−2∑r=120r+∑r=1205
M1 — splitting the sum into three pieces and pulling out the constant multiples 3 and −2. The justification is that Σ is a linear operator: ∑(af(r)+bg(r))=a∑f(r)+b∑g(r). Common error: students try to "factor" the polynomial under the sigma, e.g. writing ∑(3r2−2r+5)=(3r−?)(r−?), treating the sum like an algebraic expression. Loses M1 instantly.
A1 — correctly written split with constants out front.
Step 2 — apply the standard result for ∑r2 with n=20.
∑r=120r2=61(20)(21)(41)=61⋅17,220=2870
M1 — substitution into 61n(n+1)(2n+1) with n=20, giving 2n+1=41.
A1 — correct value 2870.
Step 3 — apply the standard result for ∑r with n=20.
∑r=120r=21(20)(21)=210
M1 — substitution into 21n(n+1).
Step 4 — handle the constant sum.
∑r=1205=5⋅20=100
M1 — recognising that ∑r=1nc=cn for a constant c. Common error: writing ∑r=1205=5 (forgetting the multiplicity) or 5⋅21 (off-by-one).
Step 5 — combine.
3(2870)−2(210)+100=8610−420+100=8290
A1 — correct final value 8290.
A1 (presentation) — the answer is given as a single integer with full working visible; no decimal approximation, no unsimplified intermediate fractions left behind.
Total: 8 marks (M4 A4).
Examiner notes on the worked solution: A candidate who writes the first line — splitting ∑(3r2−2r+5)=3∑r2−2∑r+∑5 — has effectively secured the first two marks regardless of arithmetic slips later. This is why marking the structure first matters more than computing fast. The arithmetic at 61(20)(21)(41) rewards a candidate who multiplies in the order (20)(21)=420, then 420×41=17,220, then divides by 6 — rather than the temptation to compute 21×41 first, which is 861 and harder to multiply by 20 accurately under timed pressure. Edexcel mark schemes typically award method marks generously: substituting the correct n into a clearly identified standard result earns M1 even if the subsequent arithmetic is wrong. Accuracy marks (A1) are reserved for the final correct numerical answer. So a candidate who mis-computes 420×41=17,220 as 17,210 would still earn M3 but lose A2 — a distinction that matters: the question is worth 8 marks but a careful candidate with the wrong final answer might still score 6/8.
Question (6 marks): Show that r=1∑n(2r−1)2=31n(2n−1)(2n+1) for all positive integers n.
Mark scheme decomposition by AO:
Total: 6 marks split AO1 = 4, AO2 = 2. The AO2 marks are reserved for the algebraic manipulation that converts the raw substituted form into the factorised target; an unfactorised numerically-correct expression earns the M marks but loses both A2 marks. A common candidate trap on this style of question is to verify the formula numerically (e.g. checking n=3 gives 1+9+25=35=31(3)(5)(7)) and stop there — but "show that" is a general proof requirement, not a verification, and substituting a single value scores zero. The expected route is the algebraic chain shown above, with explicit Σ manipulation visible at every stage. A cleaner alternative for A* candidates: induction. Base case n=1: LHS =1, RHS =31(1)(1)(3)=1. Inductive step: assume ∑r=1k(2r−1)2=31k(2k−1)(2k+1) and add (2(k+1)−1)2=(2k+1)2 to both sides, then factorise. Either method earns full marks; the algebraic route is more typical of 9MA0, the inductive route of Further Mathematics 9FM0.
Connects to:
Arithmetic and geometric series: Sn=∑r=1nar is the definition of a partial sum. The closed forms Sn=2n(2a+(n−1)d) (arithmetic) and Sn=a(1−rn)/(1−r) (geometric) are evaluations of these sigma expressions — once you write the series in sigma form, you choose which closed form applies.
Proof by induction (Further Mathematics): the standard results ∑r=1nrk for k=1,2,3 are typically proved by induction. The case k=3 (Faulhaber's formula ∑r3=(21n(n+1))2=(∑r)2) is a favourite Year 2 question.
Integration as continuous summation: ∫abf(x)dx=limn→∞∑r=1nf(xr)Δx where Δx=(b−a)/n. The integral is the limit of a Riemann sum — sigma notation is integration's discrete twin.
Statistics — formula booklet: the mean xˉ=n1∑xi and variance σ2=n1∑xi2−xˉ2 are sigma expressions. The summary statistics Sxx=∑xi2−n(∑xi)2 used in regression and correlation are pure sigma manipulation.
Combinatorics and the binomial theorem: (1+x)n=∑r=0n(rn)xr. Substituting x=1 gives ∑(rn)=2n; substituting x=−1 gives ∑(−1)r(rn)=0. Both are sigma-notation identities derived by clever choice of x.
Sigma-notation questions on 9MA0 split AO marks as:
| AO | Typical share | Earned by |
|---|---|---|
| AO1 (knowledge / procedure) | 60–70% | Splitting sums correctly, substituting standard results with the correct n, evaluating arithmetic |
| AO2 (reasoning / interpretation) | 25–35% | Manipulating limits (e.g. converting ∑r=kn to ∑r=1n−∑r=1k−1), factorising into the printed target form, justifying linearity |
| AO3 (problem-solving) | 0–10% | Open-modelling sigma problems are rare at AS; appear in Year 2 with telescoping or induction contexts |
Subscribe to continue reading
Get full access to this lesson and all 10 lessons in this course.