# Series (FP1)

> Edexcel International A-Level Further Mathematics · IAL Further Maths FP1
> Source: https://www.owlsprep.com/study/edexcel-ial-further-math-fp1-series/

This guide covers summation of finite polynomial series for Edexcel IAL FP1 Further Maths, including applying linearity of summation, using standard Σ results, and simplifying to fully factorised closed form, aligned strictly to the 2018 FP1 specification.

**Prerequisites:** [Basic algebraic expansion and factorisation of polynomials](https://www.owlsprep.com/study/edexcel-ial-a-level-maths-polynomial-factorisation/); [Edexcel IAL FP1 Mathematical Notation for Summations](https://www.owlsprep.com/study/edexcel-ial-fp1-mathematical-notation/)

## Learning objectives

- Apply linearity of summation to split composite series into standard building blocks
- Use standard Σr, Σr², Σr³ results to evaluate finite polynomial series
- Simplify summation results to fully factorised closed polynomial form
- Differentiate between memorised and formula book provided summation results for exam use

## Linearity of Summation Rules

**Linearity of Summation** — For constants a and b, and functions f(r) and g(r), the summation operator follows: $\sum_{r=1}^{n} [a f(r) + b g(r)] = a \sum_{r=1}^{n} f(r) + b \sum_{r=1}^{n} g(r)$. Additionally, the sum of a constant k over n terms is $\sum_{r=1}^{n} k = nk$.

This rule is the foundation of all FP1 series problems. It lets you break down complex composite summations into separate, simpler terms that match the standard summation results you can use directly.

**Worked example:** Split the summation $\sum_{r=1}^{n} (3r^2 + 2r - 5)$ into separate standard summation terms.

1. Apply linearity to split each term and factor out constants:

   $$\sum_{r=1}^{n} (3r^2 + 2r - 5) = 3\sum_{r=1}^{n} r^2 + 2\sum_{r=1}^{n} r - 5\sum_{r=1}^{n} 1$$
2. Simplify the constant term using the constant summation rule:

   $$= 3\sum_{r=1}^{n} r^2 + 2\sum_{r=1}^{n} r - 5n$$

> **Exam tip:** Always split constants out first, and remember that a term with no r (e.g. -5) is summed n times, not once.

*Calculator:* allowed

## Standard Summation Results

> **Exam Recall Guidance**
>
> Memorise $\sum_{r=1}^{n} r = \frac{n(n+1)}{2}$. The results for $\sum r^2$ and $\sum r^3$ are provided in your formula book, so you do not need to memorise them for FP1.

| Sum | Closed Form |
| --- | --- |
| $\sum_{r=1}^{n} r$ | $\frac{1}{2}n(n+1)$ |
| $\sum_{r=1}^{n} r^2$ | $\frac{1}{6}n(n+1)(2n+1)$ |
| $\sum_{r=1}^{n} r^3$ | $\frac{1}{4}n^2(n+1)^2$ |

These three results are the only standard summations you will need for FP1 series questions. Any polynomial term in r can be expanded and split into combinations of these three sums using linearity rules.

**Worked example:** Evaluate $\sum_{r=1}^{10} r^2$ using the standard result.

1. Substitute n=10 into the standard $\sum r^2$ formula:

   $$\sum_{r=1}^{10} r^2 = \frac{1}{6}(10)(10+1)(2(10)+1)$$
2. Calculate the value:

   $$= \frac{1}{6} \times 10 \times 11 \times 21 = 385$$

> **Exam tip:** Always double-check your substitution of n into the formulae, especially for the $\sum r^2$ result which has the (2n+1) factor that is easy to mix up.

*Calculator:* allowed

## Simplifying to Fully Factorised Closed Form

After substituting the standard results into your split summation, you will be left with a polynomial expression in n. You must simplify this to a fully factorised form, as required by the exam specification. Factorising makes it easier to evaluate for specific values of n and is often explicitly asked for in questions.

**Worked example:** Find the closed form of $\sum_{r=1}^{n} r(r^2 + 2)$, giving your answer fully factorised.

1. Expand the term inside the summation first:

   $$r(r^2 + 2) = r^3 + 2r$$
2. Apply linearity to split the summation:

   $$\sum_{r=1}^{n} (r^3 + 2r) = \sum_{r=1}^{n} r^3 + 2\sum_{r=1}^{n} r$$
3. Substitute the standard results:

   $$= \frac{1}{4}n^2(n+1)^2 + 2 \times \frac{1}{2}n(n+1) = \frac{1}{4}n^2(n+1)^2 + n(n+1)$$
4. Factor out the common terms: $\frac{1}{4}n(n+1)$ is a common factor:

   $$= \frac{1}{4}n(n+1) [n(n+1) + 4] = \frac{1}{4}n(n+1)(n^2 + n +4)$$
5. Confirm that $n^2 +n +4$ has no real integer factors, so this is the fully factorised form.

> **tip**
>
> Always factor out the lowest common denominator first to eliminate fractions before factoring the remaining polynomial.

*Calculator:* allowed

## Common pitfalls

- **Wrong:** Forgetting to multiply a constant term by n when splitting summations, e.g. writing $\sum 5 =5$ instead of $5n$
  - Why it fails: The constant term is included for every one of the n values of r, so it is added n times, not once.
  - Correct: Always replace $\sum_{r=1}^n k$ with $nk$ where k is a constant.
- **Wrong:** Using the method of differences to solve FP1 series questions.
  - Why it fails: The method of differences is not part of the FP1 specification, and you will not receive marks for using it even if you get the correct answer.
  - Correct: Only use linearity of summation and the three standard Σr, Σr², Σr³ results for FP1 series problems.
- **Wrong:** Mixing up the standard summation formulae, e.g. using $\sum r^2 = \frac{1}{4}n^2(n+1)^2$ which is the formula for $\sum r^3$.
  - Why it fails: This will result in an incorrect final answer, even if your algebraic manipulation is correct.
  - Correct: Memorise only the $\sum r$ formula, and reference the formula book for $\sum r^2$ and $\sum r^3$ to avoid mix-ups.
- **Wrong:** Leaving the final closed form as an expanded polynomial instead of factorising it.
  - Why it fails: Exam questions often explicitly require a fully factorised form, so you will lose marks for not factorising even if your expanded expression is correct.
  - Correct: Always factorise your final closed form completely, and eliminate any fractions by factoring out denominators as common factors.
- **Wrong:** Expanding the summation term incorrectly before splitting, e.g. writing $r(r+3) = r^2 +3$ instead of $r^2 +3r$.
  - Why it fails: Algebraic errors at the first step of the problem will invalidate all subsequent working.
  - Correct: Double-check your expansion of composite terms before applying linearity rules to split the summation.

## Cheatsheet

| Concept | Rule / Formula |
| --- | --- |
| Linearity of Summation | $\sum (af(r)+bg(r)) = a\sum f(r) + b\sum g(r)$ |
| Sum of constant k | $\sum_{r=1}^n k = nk$ |
| $\sum_{r=1}^n r$ (memorise) | $\frac{1}{2}n(n+1)$ |
| $\sum_{r=1}^n r^2$ (formula book) | $\frac{1}{6}n(n+1)(2n+1)$ |
| $\sum_{r=1}^n r^3$ (formula book) | $\frac{1}{4}n^2(n+1)^2$ |
| Final Answer Requirement | Fully factorised closed polynomial form |

## What's next

Now that you have mastered finite series summation for FP1, you can apply these skills to related topics in the Edexcel IAL Further Mathematics specification. Series questions are often combined with proof by induction, where you will be asked to prove the standard summation results or your derived closed forms using induction principles. You will also encounter more advanced series topics in FP2, including the method of differences and summation of series with fractional terms requiring partial fractions. It is recommended that you practice past paper FP1 series questions to reinforce your ability to split summations, substitute standard results, and factorise your final answers quickly and accurately, as these questions are typically worth 4-6 marks each and are high-scoring if you avoid common algebraic errors.

---

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-ial-further-math-fp1-series/
