# The sigma notation

> Edexcel International GCSE Further Pure Mathematics · 4PM1 2016 Spec
> Source: https://www.owlsprep.com/study/edexcel-igcse-further-pure-math-s5-the-sigma-notation/

This guide teaches you to read, write, and evaluate sums using sigma (Σ) notation for Edexcel IGCSE Further Pure Maths (4PM1). You will practice interpreting limits and applying the notation to simple numerical and algebraic sums.

**Prerequisites:** [Understanding of sequence terms and algebraic substitution](https://www.owlsprep.com/study/edexcel-igcse-further-pure-math-s1-algebraic-substitution/); Basic arithmetic and algebraic summation skills

## Learning objectives

- Interpret sigma notation to identify summation limits, index variables and term expressions
- Rewrite expanded numerical and simple algebraic sums using correct sigma notation
- Evaluate sums written in sigma notation accurately for exam questions

## What is Sigma Notation?

**Sigma Notation** — A compact way to write the sum of terms f(k) where k takes every integer value from the lower limit a to the upper limit b, inclusive.

*Notation:* \sum_{k=a}^{b} f(k)

*Example:* Sum of first 5 positive integers: \(\sum_{k=1}^{5} k = 1+2+3+4+5 = 15\)

The Greek capital letter Σ (sigma) stands for 'sum of'. The variable below the sigma is called the index of summation, and can be any letter (k, n, r are most common). You substitute every integer value of the index from the lower limit up to the upper limit into the expression next to the sigma, then add all resulting terms together.

> **note**
>
> The index variable only applies to the summation - it has no meaning outside the Σ expression, so it is often called a 'dummy variable'.

**Worked example:** Identify the terms and calculate the value of \(\sum_{k=2}^{4} (2k + 1)\)

1. Step 1: Identify the limits: lower limit k=2, upper limit k=4. Substitute k=2, 3, 4 into the expression 2k+1:
2. $$k=2: 2(2)+1 = 5$$
3. $$k=3: 2(3)+1 = 7$$
4. $$k=4: 2(4)+1 = 9$$
5. Step 2: Add the terms together:
6. $$5 + 7 + 9 = 21$$
7. Final result: 21

> **Exam tip:** Always double-check you have included both the lower and upper limit values when expanding the sum - missing one of these is a common easy mark to lose.

*Calculator:* allowed

## Writing Sums Using Sigma Notation

To rewrite an expanded sum in sigma notation, first identify the pattern of the terms, define your index variable and limits, then write a general expression for the nth term of the sequence.

**Worked example:** Rewrite the sum \(3 + 7 + 11 + 15 + 19 + 23\) using sigma notation.

1. Step 1: Identify the term pattern: each term increases by 4, so it is a linear sequence with nth term 4n - 1 (check: n=1 gives 3, n=2 gives 7, etc.)
2. Step 2: Identify limits: there are 6 terms, so the index runs from n=1 to n=6
3. Step 3: Write the sigma expression:
4. $$\sum_{n=1}^{6} (4n - 1)$$
5. Alternative valid form: you could use a different index, e.g. \(\sum_{k=0}^{5} (4k + 3)\), as long as the expanded terms match exactly.

**Check your understanding**

1. Which of the following is a correct sigma notation for the sum 1 + 4 + 9 + 16 + 25?

   - A. \(\sum_{k=1}^{5} 2k\)
   - B. \(\sum_{k=1}^{5} k^2\)
   - C. \(\sum_{k=0}^{4} k^2\)

   *Why:* Option B gives 1² + 2² + 3² + 4² +5² = 1+4+9+16+25, which matches the given sum. Option A gives even numbers, option C starts at k=0 so its first term is 0.

> **Exam tip:** If you are asked to write a sum in sigma notation, you can always check your answer by expanding the first and last terms to confirm they match the given sum.

*Calculator:* allowed

## Evaluating Algebraic Sigma Sums

You may be asked to evaluate sums with algebraic terms, or sums where the expression under sigma is a constant. For constant terms, you are just adding the constant as many times as the number of terms between the limits (inclusive).

> **tip**
>
> To find the number of terms between limits a and b inclusive, use the formula \(b - a + 1\). This avoids counting errors, especially for large ranges.

**Worked example:** Evaluate \(\sum_{r=1}^{10} 3\) and \(\sum_{x=3}^{7} (x^2 + 2x)\)

1. First sum: \(\sum_{r=1}^{10} 3\)
2. Step 1: Number of terms = 10 - 1 + 1 = 10 terms, each equal to 3
3. $$10 \times 3 = 30$$
4. Second sum: \(\sum_{x=3}^{7} (x^2 + 2x)\)
5. Step 1: Substitute x=3,4,5,6,7:
6. $$x=3: 3^2 + 2(3) = 9 +6 =15$$
7. $$x=4: 16 + 8 =24$$
8. $$x=5:25 +10=35$$
9. $$x=6:36 +12=48$$
10. $$x=7:49 +14=63$$
11. Step 2: Add all terms: 15 +24 +35 +48 +63 = 185
12. Final results: 30 and 185 respectively

*Calculator:* allowed

## Common pitfalls

- **Wrong:** Only summing terms from lower limit +1 up to upper limit, missing the lower limit term
  - Why it fails: Students often forget to substitute the lower limit value, leading to an incorrect sum with one term missing
  - Correct: Always confirm you have (upper limit - lower limit + 1) terms in your expanded sum before adding them.
- **Wrong:** Assuming the index always starts at 1
  - Why it fails: Limits can start at any integer, including negative numbers or zero, so substituting starting at 1 will give wrong terms
  - Correct: Always check the lower limit of the summation before substituting values for the index.
- **Wrong:** Treating the index variable as a global variable
  - Why it fails: The index only exists within the sigma expression, so you cannot combine it with variables outside the sum
  - Correct: If the sum is part of a larger expression, treat the entire sigma sum as a single constant/variable value when simplifying the rest of the expression.
- **Wrong:** Forgetting to apply all parts of the expression under sigma to each index value
  - Why it fails: For example, for \(\sum (k + 2)\), students sometimes only sum k and then add 2 once at the end, instead of adding 2 to every term
  - Correct: Substitute the index into the full expression each time, or expand the sum first if appropriate to separate constant and variable terms.
- **Wrong:** Using non-integer values for the index
  - Why it fails: At IGCSE Further Pure level, the index of summation always takes consecutive integer values only
  - Correct: Only substitute integer values of the index from lower to upper limit, skipping no integers in between.

## Cheatsheet

| Task | Step-by-Step Method | Example |
| --- | --- | --- |
| Interpret sigma notation | 1. Note lower limit, upper limit, index, and term expression 2. Substitute every integer from lower to upper limit into the term 3. Add all resulting terms | \(\sum_{k=1}^3 2k = 2(1)+2(2)+2(3) = 12\) |
| Write sum in sigma notation | 1. Find the nth term formula for the sequence of terms 2. Identify the first and last values of the index 3. Write the sigma expression with limits and nth term | Sum 2 +4 +6 +8 = \(\sum_{n=1}^4 2n\) |
| Evaluate constant sum | 1. Calculate number of terms: upper limit - lower limit + 1 2. Multiply number of terms by the constant value | \(\sum_{r=2}^5 4 = (5-2+1) \times 4 = 16\) |

## What's next

Now that you have mastered sigma notation, you are ready to apply it to arithmetic and geometric series, the next topic in the Edexcel IGCSE Further Pure Math series unit. Sigma notation will also appear later in your course when you study binomial expansions and other summation problems, so it is a critical foundational skill. Practice writing and evaluating sigma sums regularly to avoid simple errors in exam questions, and always check your expanded terms match the expected pattern before calculating the final sum.

---

From [OwlsPrep](https://www.owlsprep.com) — free study guides for A-Level, IB, AP and IGCSE, written against the official syllabus. Canonical page: https://www.owlsprep.com/study/edexcel-igcse-further-pure-math-s5-the-sigma-notation/
