Numerical methods
CIE A-Level MathematicsΒ· 15 min read
1. Locating Roots by Sign Changeβ β ββββ± 15 min
If a function is continuous on the closed interval , and and have opposite signs, then there is at least one root of in the open interval . This is the foundation of all numerical root finding.
Root of an equation
A value such that , also called a zero of the function .
Show that has a root between and .
- 1
Define the function for the equation:
- 2
- 3
Evaluate at the endpoints of the interval:
- 4
- 5
- 6
is continuous for all real , as a combination of exponential and polynomial functions. Since and have opposite signs, there is at least one root in .
Exam tip:
Always explicitly state that the function is continuous when justifying a root in an interval, CIE allocates one mark for this step.
2. Fixed Point Iterationβ β β βββ± 20 min
To find an approximate value for a root, we rearrange into the form . Starting from an initial guess , we generate a sequence of approximations using the recurrence relation .
Convergence Condition
If (where is the fixed point), the iteration will converge to for starting values close enough to . If , the iteration will diverge.
Find the root of between 0 and 1, correct to 2 decimal places, starting from .
- 1
Rearrange the equation into form:
- 2
- 3
Check convergence: , so for , , so iteration converges.
- 4
Generate the sequence of approximations:
- 5
- 6
- 7
- 8
Both and round to 0.35 to 2 decimal places, so the root is approximately 0.35.
Exam tip:
Always show two successive iterations that round to the same value to confirm your accuracy is correct.
3. Newton-Raphson Methodβ β β βββ± 20 min
The Newton-Raphson method is a fast, tangent-based iterative method that uses differentiation to improve approximations. It is one of the most commonly tested methods in CIE P3 exams.
Newton-Raphson Iteration
A method to find successive approximations for a root of , given by the formula:
Find the positive root of correct to 3 decimal places, starting from .
- 1
We have , so . Substitute into the Newton-Raphson formula:
- 2
- 3
First iteration with :
- 4
- 5
Second iteration:
- 6
- 7
Third iteration:
- 8
- 9
Both and round to 2.236 to 3 decimal places, so the root is approximately 2.236.
Exam tip:
If you are asked to use Newton-Raphson, always write the full formula before substituting values to get full method marks.
4. Bisection Methodβ β ββββ± 15 min
The bisection method is a simple iterative method based on the sign change principle. It is slower than other methods but guaranteed to converge if a root exists in the initial interval.
Find the root of between 3 and 4, correct to 1 decimal place.
- 1
We know , . Find the midpoint of the interval and check the sign of at the midpoint:
- 2
- 3
- 4
- 5
- 6
All values in round to 3.7 to 1 decimal place, so the root is approximately 3.7.
Exam tip:
Record the sign of f(x) at each midpoint to avoid mixing up which interval to keep next.
5. Common Pitfalls
Wrong move:
Forgetting to state the function is continuous when justifying a root in an interval
Why:
CIE explicitly allocates one mark for this statement, which is often lost
Correct move:
Always add the line 'f(x) is continuous on [a, b]' after calculating f(a) and f(b)
Wrong move:
Stopping after one iteration when asked for a given accuracy
Why:
Examiners require you to confirm your approximation is correct to the required accuracy
Correct move:
Calculate at least two successive approximations that round to the same value
Wrong move:
Claiming no root exists when there is no sign change in an interval
Why:
Tangent roots and pairs of roots do not produce a sign change but still exist
Correct move:
Only use sign change to confirm a root exists, never to confirm a root does not exist
Wrong move:
Using Newton-Raphson when is very close to zero
Why:
This causes near division by zero, leading to a divergent or incorrect iteration
Correct move:
Change your starting approximation or use the bisection method instead
6. Quick Reference Cheatsheet
Method | Key Rule | Convergence | Accuracy Check |
|---|---|---|---|
Sign Change | f(a)f(b) < 0 + continuous = root in (a,b) | N/A (location) | Check interval bounds round to same value |
Fixed Point Iteration | , converges if | Linear | Two iterations round to same value |
Newton-Raphson | Quadratic (fast) | Two iterations round to same value | |
Bisection | Halve interval, keep subinterval with sign change | Linear (slow, guaranteed) | Check interval bounds round to same value |
7. Frequently Asked
Do I need to prove convergence in CIE exams?
Most questions only ask you to locate a root or apply an iterative method. You only need to check if explicitly asked, but it is good practice to mention it.
When this came up on past exams
AI-estimated based on syllabus patterns β cross-check with official past papers for accuracy. Use only as revision-focus signals.
- 2022 Β· 12
10 mark root finding question
- 2023 Β· 13
Newton-Raphson method question
- 2021 Β· 22
Iterative convergence check
Going deeper
What's Next
Numerical methods are the foundation for solving real-world problems in engineering, data science and physics, where most equations cannot be solved algebraically. The iterative principles you learned here for root finding extend directly to numerical integration, differential equations and other advanced numerical techniques. This subtopic relies heavily on differentiation, so revisiting that topic will help you master harder numerical problems that appear in CIE P3 exams.
