IB Maths AA HLTopic 1 — Number & AlgebraPaper 1 & 2~7 min read
Sigma Notation
Sigma notation is just a compact way of writing a sum. Instead of writing out every term with plus signs, you tell the reader: “here’s the formula for a typical term, here’s where to start, and here’s where to stop”. Once you can read it fluently, every later note in this section (arithmetic, geometric, binomial theorem, integration sums) becomes much faster to work through — IB papers use Σ everywhere.
📘 What you need to know
The Greek letter Σ (capital sigma) means “sum”. Whatever follows the sigma is the formula for one term; the limits tell you where to start and stop.
The variable underneath (often r, k, or i) is the dummy variable — it counts up by 1 each step.
Lower limit tells you the starting value of the dummy variable. Upper limit tells you the final value (inclusive).
Lower limits don’t always start at 1 — read carefully.
Two HL-useful properties: constants come out (Σ cur = c·Σ ur) and sums split (Σ(ur + vr) = Σ ur + Σ vr).
Your GDC computes Σ directly — useful for checking by-hand answers.
The anatomy of a sigma expression
Every Σ has three pieces: where it starts, where it stops, and what each term looks like. Once you can label these three parts, reading any sigma expression is mechanical.
The three parts of a sigma expression
The dummy variable’s letter doesn’t matter. r, k, and i are all common. As long as the same letter is used in the formula and the lower limit, the value of the sum is the same.
Computing a sum from sigma notation
Substitute every value of the dummy variable from the lower limit up to the upper limit into the formula, and add the results.
🧭 Recipe — evaluate a sigma expression
Read off the limits. Note the start value, the stop value, and the formula.
Substitute each value of the dummy variable into the formula one at a time.
Add all the results together.
Check with your GDC — most calculators have a Σ button that does the whole thing in one keystroke.
Going the other way is also a common exam task. You’re given a list of terms, and you have to compress it into a sigma expression. The key step is finding the formula for a typical term in terms of the dummy variable.
🧭 Recipe — convert a sum into Σ notation
Spot the pattern — how does each term depend on its position?
Write a formula in terms of a dummy variable (call it k) for the general term.
Set the limits — what value of k gives the first term, and what gives the last?
Verify by substituting the lower and upper limits back in — they should produce the original first and last terms.
Example: the sum 6 + 11 + 16 + 21 + 26 has each term equal to 5k + 1, with k running from 1 to 5. So it equals Σk=15 (5k + 1).
Watch the lower limit — it’s not always 1
A common trap: assuming Σ always starts at k = 1. It often does, but plenty of exam questions deliberately use other starting points (like k = 0, k = 3, or k = 7).
The number of terms in Σk=ab is (b − a + 1), not just (b − a). Lots of students miscount by 1 — easy mistake to make under time pressure.
Two HL-useful properties
Two simple algebraic rules that often turn an awkward sum into something clean.
Constant out front
Σr=1n (c · ur) = c · Σr=1nur
Sum splits
Σr=1n (ur + vr) = Σr=1nur + Σr=1nvr
🤔 Why do these work?
They’re both consequences of how addition behaves. A constant inside every term factors out the same way c(a + b + c) = ca + cb + cc works in reverse. And rearranging the order of addition lets you group like terms — that’s the sum-split.
These two properties become essential when you reach the binomial theorem and integration. They turn a clumsy single sigma into two cleaner ones.
Using your GDC
Most modern graphing calculators have a sum function that takes the formula, dummy variable, lower limit, and upper limit, and returns the answer in one keystroke.
On a TI-Nspire: use the Σ() template under the menu > calculus options. On Casio fx-CG50: use SHIFT > (CALC) > Σ. Always double-check the limits are entered correctly.
Step 1: Substitute k = 2, 3, 4, 5k = 2: 4 k = 3: 9 k = 4: 16 k = 5: 25Step 2: Add4 + 9 + 16 + 25 = 54= 54there are 4 terms here (5 − 2 + 1), not 3 — count carefully when limits don’t start at 1
WE 3
Write a sum using sigma notation
Express the sum 5 + 9 + 13 + 17 + 21 + 25 in sigma notation.
Step 1: Spot the patternterms increase by 4 each time, starting at 5general term: 4k + 1Step 2: Find the limitsk = 1: 4 + 1 = 5 ✓ (first term)k = 6: 24 + 1 = 25 ✓ (last term)= Σk=16 (4k + 1)
WE 4
Sigma notation from a defined sequence
A sequence is defined by un = 4n + 3 for n ∈ ℤ+. Express u5 + u6 + u7 + … + u12 in sigma notation.
Step 1: Identify the formula and the limitsgeneral term: 4k + 3starts at k = 5, ends at k = 12= Σk=512 (4k + 3)note the lower limit is 5, not 1 — match the subscript of the first term you’re summing
WE 5
Apply the constant-out and split properties
Given that Σr=110 r = 55 and Σr=110 r2 = 385, find Σr=110 (2r2 − 3r).
Step 1: Split the sum= Σ 2r2 − Σ 3rStep 2: Pull constants out= 2 · Σ r2 − 3 · Σ rStep 3: Substitute the given values= 2(385) − 3(55) = 770 − 165= 605the two properties together turn one messy sum into two clean ones
WE 6
How many terms does this sum contain?
How many terms are there in the sum Σk=420 (2k − 1)?
Apply the count formulanumber of terms = upper − lower + 1= 20 − 4 + 1 = 1717 termsthe +1 catches the off-by-one error students often make
💡 Top tips
Always count terms as (upper − lower + 1). Forgetting the +1 is the most common slip.
Verify by substituting both limits when you build a sigma expression yourself — the lower limit should produce the first term, the upper limit the last.
If the sum has more than 5 or 6 terms, use your GDC to evaluate it. Faster and more reliable.
For complex sums, look for patterns to split. A sum like Σ(3r + 2r2) becomes 3·Σr + 2·Σr2 — much easier.
The dummy variable letter doesn’t matter. You can replace k with r or i without changing the value.
If a sigma expression looks unfamiliar, write out the first 3 or 4 terms by hand — usually clarifies what’s going on.
For sigma sums of arithmetic or geometric sequences, the standard sum formulas from the next two notes are far faster than expanding term-by-term.
⚠ Common mistakes
Miscounting terms. Σk=310 has 8 terms (10 − 3 + 1), not 7.
Assuming the lower limit is 1. Always read the bottom of the sigma carefully.
Using the wrong dummy variable. If the limit says k = 1 but the formula uses r, the sum is meaningless. Both must match.
Splitting a product like a sum. Σ(ur · vr) ≠ Σur · Σvr. Only sums and constants behave nicely.
Forgetting that the upper limit is inclusive. Σk=15 includes k = 5 — both endpoints count.
Pulling out a non-constant. Σ r · ur ≠ r · Σ ur. Only true constants come out — variables that depend on the index don’t.
GDC input errors. When typing into the calculator, use brackets liberally — particularly around the formula. Σ(3k+1, k, 1, 5) is the safe form.
Sigma notation is the IB’s universal shorthand for “sum these up”. The next two notes (arithmetic and geometric series) give you the closed-form formulas that turn a long sigma calculation into one line. Get fluent with the notation here, and the rest of the section reads much faster.
Need help with Sigma Notation?
Get 1-on-1 help from an IB examiner who knows exactly what Paper 1 & 2 are looking for.