# Numerical Methods (Edexcel IAL P3)

> Edexcel International A-Level Mathematics · Edexcel IAL Maths P3 (WMA13)
> Source: https://www.owlsprep.com/study/edexcel-ial-math-p3-numerical-methods/

This guide covers the two core numerical methods skills required for Edexcel IAL Pure Mathematics 3 (P3): locating roots of f(x)=0 using the sign change rule, and applying given iterative recurrence relations to find approximate roots.

**Prerequisites:** [Ability to evaluate continuous functions for given x values](https://www.owlsprep.com/study/edexcel-ial-math-p1-functions/); [Familiarity with recurrence relations](https://www.owlsprep.com/study/edexcel-ial-math-p2-sequences-series/)

## Learning objectives

- Locate roots of f(x)=0 using the sign change rule for continuous functions
- Apply provided iterative recurrence relations to calculate approximate roots
- Justify the accuracy of approximate roots using sign change reasoning for exam questions

## 1. Root Location Using the Sign Change Rule

**Sign Change Rule for Root Location** — For a continuous function f(x) on the interval [a, b], if f(a) and f(b) have opposite signs (one positive, one negative), then there exists at least one root of \(f(x) = 0\) in the open interval (a, b).

*Example:* If f(1.2) = -0.3 and f(1.3) = 0.4, there is a root between 1.2 and 1.3.

Always state the continuity of f(x) in your exam answer to get full marks, even if the question does not explicitly ask for it. Discontinuous functions (e.g. with asymptotes) can have sign changes without roots, so the continuity condition is mandatory.

**Worked example:** Show that the function \(f(x) = x^3 - 3x + 1\) has a root in the interval (1.5, 1.6).

1. Step 1: Evaluate f(x) at the lower bound of the interval

   $$f(1.5) = (1.5)^3 - 3(1.5) + 1 = 3.375 - 4.5 + 1 = -0.125$$
2. Step 2: Evaluate f(x) at the upper bound of the interval

   $$f(1.6) = (1.6)^3 - 3(1.6) + 1 = 4.096 - 4.8 + 1 = 0.296$$
3. Step 3: State the sign change and continuity condition: f(x) is a polynomial, so it is continuous for all real x. f(1.5) < 0 and f(1.6) > 0, so there is a sign change. This confirms a root of f(x)=0 lies in (1.5, 1.6).

> **Exam Tip**
>
> If the question asks you to confirm a root is correct to n decimal places, test the interval \([x - 0.5 \times 10^{-n}, x + 0.5 \times 10^{-n}]\). For 2 decimal places, this is ±0.005 around your approximate root.

*Calculator:* allowed

## 2. Using Provided Iterative Recurrence Relations

**Iterative Method for Root Approximation** — An iterative method uses a recurrence relation of the form \(x_{n+1} = g(x_n)\), provided in the exam question, to generate a sequence of approximations \(x_0, x_1, x_2, ...\) that converge to a root of f(x)=0.

*Example:* The recurrence relation \(x_{n+1} = \sqrt[3]{3x_n - 1}\) can be used to approximate a root of \(x^3 - 3x + 1 = 0\).

You will always be given the starting value \(x_0\) and the recurrence relation itself in P3 exams. You do not need to derive the recurrence relation from f(x)=0 for this unit.

**Worked example:** The iterative formula \(x_{n+1} = \sqrt[3]{3x_n - 1}\) is used to find a root of \(f(x) = x^3 - 3x + 1 = 0\). Taking \(x_0 = 1.5\), find the values of \(x_1, x_2, x_3\), giving your answers to 4 decimal places.

1. Step 1: Calculate \(x_1\) by substituting \(x_0=1.5\) into the recurrence relation

   $$x_1 = \sqrt[3]{3(1.5) - 1} = \sqrt[3]{3.5} \approx 1.5183$$
2. Step 2: Calculate \(x_2\) using the full calculator value of \(x_1\), not the rounded value

   $$x_2 = \sqrt[3]{3(1.5183) - 1} \approx 1.5257$$
3. Step 3: Calculate \(x_3\) using the full calculator value of \(x_2\)

   $$x_3 = \sqrt[3]{3(1.5257) - 1} \approx 1.5289$$
4. Step 4: Round all final values to 4 decimal places as requested: \(x_1=1.8708, x_2=2.1476, x_3=2.3330\)

> **warning**
>
> Always use the full calculator precision of the previous term when calculating the next iteration, not the rounded value. Rounding intermediate steps leads to accumulated errors that can make your final answer incorrect.

> **Exam tip:** If the question asks why the iterative sequence converges to a root, use the sign change rule on the interval between the last two iteration values to confirm a root lies in that range.

*Calculator:* allowed

## 3. Justifying Accuracy of Approximate Roots

A common exam question asks you to confirm that an approximate root you have found via iteration is correct to a given number of decimal places or significant figures. This requires using the sign change rule on an appropriate interval around your approximate value.

**Worked example:** Show that the root of \(f(x) = x^3 - 3x + 1 = 0\) found via iteration, x=1.532, is correct to 3 decimal places.

1. Step 1: Identify the interval for 3 decimal place accuracy: any value between 1.5315 and 1.5325 rounds to 1.532 when rounded to 3 decimal places.

   $$\text{Test interval: } [1.5315, 1.5325]$$
2. Step 2: Evaluate f(x) at both endpoints of the interval

   $$f(1.5315) = (1.5315)^3 - 3(1.5315) + 1 ≈ -0.0015$$
3. $$f(1.5325) = (1.5325)^3 - 3(1.5325) + 1 ≈ 0.0035$$
4. Step 3: State the conclusion: f(x) is continuous, there is a sign change across the interval, so the root lies between 1.5315 and 1.5325, so x=1.532 is correct to 3 decimal places.

**Exam command terms**

Key command terms for this topic:

- **Show that** — You must present all steps of your calculation, including explicit evaluation of f(x) at interval endpoints, and state the continuity and sign change conditions. *(Show that there is a root in (1.2,1.3) requires you to calculate f(1.2), f(1.3), mention sign change and continuity.)*

- **Find** — Calculate the required iteration values, using full calculator precision, rounding only the final answer to the requested number of places.

*Calculator:* allowed

## Common pitfalls

- **Wrong:** Forgetting to state that f(x) is continuous when using the sign change rule.
  - Why it fails: The sign change rule only applies to continuous functions; a sign change in a discontinuous function does not guarantee a root. You will lose 1 mark per question for omitting this.
  - Correct: Always add a line stating "f(x) is continuous on [a,b] (e.g. as it is a polynomial/exponential/trigonometric function) so a sign change confirms a root in the interval."
- **Wrong:** Using rounded values of previous iterations to calculate the next term.
  - Why it fails: Rounding errors accumulate over multiple iterations, leading to incorrect final values.
  - Correct: Store each iteration value in your calculator memory to use the full precision when calculating the next term, only rounding the final answers you write down.
- **Wrong:** Using the wrong interval when justifying accuracy to n decimal places.
  - Why it fails: Using [x - 10⁻ⁿ, x + 10⁻ⁿ] instead of [x - 0.5×10⁻ⁿ, x + 0.5×10⁻ⁿ] will lead to incorrect sign change tests.
  - Correct: For accuracy to 3 decimal places, test the interval 0.0005 above and below your approximate root, e.g. [1.5315, 1.5325] for x=1.532.
- **Wrong:** Applying the sign change rule where f(a) or f(b) equals zero.
  - Why it fails: If f(a)=0, then a is the root itself, not the endpoint of an interval containing the root.
  - Correct: If f(a)=0, state that x=a is an exact root of f(x)=0, rather than using the sign change rule.
- **Wrong:** Trying to derive the iterative recurrence relation yourself.
  - Why it fails: Iteration formulas are always provided in P3 exams; deriving your own is unnecessary and likely to lead to incorrect formulas that do not converge.
  - Correct: Use exactly the recurrence relation given in the question, even if you know an alternative formula.

## Cheatsheet

| Skill | Steps | Exam Mark Check |
| --- | --- | --- |
| Root location via sign change |  |  |
| Apply iterative formula |  |  |
| Justify root accuracy |  |  |

## What's next

Now that you have mastered the core numerical methods skills for Edexcel IAL P3, you can apply these techniques to a wide range of exam-style questions involving polynomial, trigonometric and exponential functions. Numerical methods are frequently tested alongside other P3 topics including differentiation and trigonometric identities, so practicing mixed topic questions will help you prepare for the structure of the real exam. Make sure you practice using your calculator efficiently to evaluate functions and run iterations quickly, as time management is key in the P3 paper. You should also practice justifying your answers clearly, as many marks in this topic are awarded for your reasoning rather than just the final numerical answer.

- [P3 Differentiation](https://www.owlsprep.com/study/edexcel-ial-math-p3-differentiation/)

---

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-math-p3-numerical-methods/
