You are viewing a free preview of this lesson.
Subscribe to unlock all 10 lessons in this course and every other course on LearningBro.
This lesson brings together all the numerical methods covered in the Edexcel A-Level Mathematics specification (9MA0) — fixed-point iteration, Newton-Raphson, and bisection/sign change — and compares their strengths, weaknesses, and appropriate uses. You also need to understand error bounds.
| Feature | Sign Change / Bisection | Fixed-Point Iteration | Newton-Raphson |
|---|---|---|---|
| Formula | Midpoint m = (a+b)/2, check sign | x_{n+1} = g(x_n) | x_{n+1} = x_n - f(x_n)/f'(x_n) |
| Requires | f(x) only | A rearrangement x = g(x) | f(x) and f'(x) |
| Convergence speed | Slow (linear) | Moderate (linear) | Fast (quadratic) |
| Reliability | Very reliable | Variable | Usually good |
| Always converges? | Yes (if continuous and sign change exists) | Only if | g'(α) |
| Error bounds | Easy to determine | Harder to determine | Harder to determine |
Consider finding a root of f(x) = x³ - 2 (the cube root of 2, α ≈ 1.2599).
| Iteration | Interval Width | Decimal Places Correct |
|---|---|---|
| 5 | 0.03125 | ~1 |
| 10 | 0.000977 | ~3 |
| 15 | 0.0000305 | ~4 |
| 20 | 0.00000095 | ~6 |
20 iterations for 6 decimal places.
| Iteration | x_n | Decimal Places Correct |
|---|---|---|
| 1 | 1.3333 | ~1 |
| 2 | 1.2639 | ~2 |
| 3 | 1.25992 | ~4 |
| 4 | 1.2599210 | ~7 |
4 iterations for 7 decimal places. The speed advantage is dramatic.
After n bisection steps on the interval [a, b]:
|error| ≤ (b - a) / 2ⁿ
This is a guaranteed upper bound on the error.
Example: Starting from [1, 2], after 10 bisections: |error| ≤ 1/2¹⁰ = 1/1024 ≈ 0.000977
To achieve an error less than ε, you need: (b - a)/2ⁿ < ε 2ⁿ > (b - a)/ε n > log₂((b - a)/ε)
Example: For [1, 2] with accuracy 10⁻⁶: n > log₂(10⁶) = 6 log₂(10) ≈ 6 × 3.322 = 19.93
So you need at least 20 bisection steps.
There is no simple guaranteed bound, but as a rough guide, the error after n iterations is approximately proportional to |g'(α)|ⁿ.
The error approximately squares each iteration (quadratic convergence). If the error at step n is ε, the error at step n + 1 is roughly Cε² for some constant C.
Question 1: Can you differentiate f(x)?
Question 2: Do you need guaranteed convergence?
Question 3: Do you need it to converge to a specific root?
Question 4: Is speed important?
"Explain one advantage and one disadvantage of the Newton-Raphson method compared to the bisection method."
Advantage: Newton-Raphson converges much faster (quadratic vs linear convergence), so fewer iterations are needed for a given accuracy.
Disadvantage: Newton-Raphson can diverge or converge to the wrong root if the starting value is poor, whereas bisection always converges provided a sign change exists.
In practice, a common strategy is:
This combines the reliability of bisection with the speed of Newton-Raphson.
| Method | Speed | Reliability | Requirements | Error Bounds |
|---|---|---|---|---|
| Bisection | Slow (halving) | Excellent | f(x) continuous, sign change | Easy: (b-a)/2ⁿ |
| Fixed-point iteration | Moderate | Variable | x = g(x) with | g'(α) |
| Newton-Raphson | Fast (quadratic) | Good but can fail | f(x) and f'(x) | Approximate only |
Edexcel 9MA0-02 specification section 13 — Numerical methods: "Locate roots of f(x)=0 by considering changes of sign of f(x) in an interval of x on which f(x) is sufficiently well behaved; solve equations approximately using simple iterative methods, including recurrence relations of the form xn+1=g(xn); solve equations using the Newton-Raphson method and other recurrence relations of the form xn+1=xn−f(xn)/f′(xn); understand how such methods can fail; use numerical integration of functions, including the use of the trapezium rule." Section 13 sits in the Year 2 Pure content of Paper 2 and is structurally synoptic — every numerical-methods question rests on differentiation (section 9), integration (section 10) or graph-sketching (section 4) underneath. The Edexcel formula booklet provides the trapezium rule (∫abydx≈21h{y0+yn+2(y1+y2+⋯+yn−1)}) but not the Newton-Raphson formula — that must be memorised as xn+1=xn−f(xn)/f′(xn).
Question (8 marks): The equation f(x)=x3+2x−5=0 has a single real root α in the interval [1,2].
(a) Show that α lies in the interval [1.3,1.4]. (2)
(b) Using the iteration xn+1=35−2xn with x0=1.3, find x1, x2 and x3 to 4 decimal places. (3)
(c) Apply the Newton-Raphson method with x0=1.3 to obtain a single iterate x1 to 4 d.p., and compare the speed of convergence of the two methods to the root α=1.3284 (4 d.p.). (3)
Solution with mark scheme:
(a) Evaluate f at the endpoints:
f(1.3)=2.197+2.6−5=−0.203 f(1.4)=2.744+2.8−5=0.544
M1 — both values computed correctly (or one value with an explicit sign-change reference). A1 — explicit conclusion that f(1.3)<0 and f(1.4)>0, that f is continuous on [1.3,1.4] (a polynomial), so by the intermediate value theorem there exists α∈(1.3,1.4) with f(α)=0. The continuity statement is required for the A1 — examiners deduct for "sign change so root", with no mention of continuity.
(b) Apply the recurrence:
x1=35−2(1.3)=32.4=1.3389 x2=35−2(1.3389)=32.3222=1.3242 x3=35−2(1.3242)=32.3516=1.3298
M1 — correct substitution into the recurrence at x0. A1 — x1=1.3389 to 4 d.p. A1 — x2 and x3 both correct to 4 d.p. The iterates are oscillating around α, halving the error roughly each step.
(c) Newton-Raphson requires f′(x)=3x2+2, so f′(1.3)=3(1.69)+2=7.07. Then:
x1=1.3−7.07−0.203=1.3+0.02871=1.3287
M1 — correct f′(x) and substitution into the Newton-Raphson formula. A1 — x1=1.3287 to 4 d.p.
A1 (comparison) — after one Newton-Raphson step the error is ∣1.3287−1.3284∣=0.0003; after three iterations of the cube-root recurrence the error is ∣1.3298−1.3284∣=0.0014. Newton-Raphson reaches 4 d.p. accuracy in one step where the fixed-point iteration needs four or five — Newton-Raphson exhibits quadratic convergence (error roughly squares each step) versus the linear convergence of the cube-root recurrence (error multiplied by a fixed factor each step).
Total: 8 marks (M3 A5).
Question (6 marks): The function f is defined by f(x)=ex−3x for x∈R.
(a) Show that the equation f(x)=0 has a root β in the interval [0.6,0.7]. (2)
(b) Use the trapezium rule with five strips to estimate ∫01(ex−3x)dx, giving your answer to 3 decimal places. (3)
(c) State, with a brief reason, whether the trapezium-rule estimate over- or under-estimates the true value of the integral. (1)
Mark scheme decomposition by AO:
(a)
(b)
(c)
Total: 6 marks split AO1 = 4, AO2 = 2. The Year 2 character of section 13 shows in part (c): the AO2 mark rewards reasoning about convexity that links section 9 (second derivative) to section 13 (numerical integration). This is the synoptic AO2 step that distinguishes A from A*.
Connects to:
Section 9 — Differentiation: Newton-Raphson is differentiation in disguise — xn+1=xn−f(xn)/f′(xn) is the x-intercept of the tangent line at (xn,f(xn)). Failure of Newton-Raphson at stationary points (where f′(xn)=0 and the tangent is horizontal) is a section-9 fact applied to a section-13 algorithm.
Section 10 — Integration: the trapezium rule estimates ∫abf(x)dx when f has no elementary antiderivative — for example ∫01e−x2dx (the Gaussian, with no closed form). Symbolic integration and numerical integration are complementary, not rival.
Section 4 — Graphs and transformations: sign-change methods require sketching y=f(x) to confirm a single root in the interval (multiple roots breaking the IVT logic). A* candidates always sketch before locating.
Section 6 — Exponentials and logarithms: ex and lnx have no elementary inverses for many compound expressions, so equations like ex=3x are routinely solved numerically. Numerical methods are the only tool for transcendental equations beyond basic forms.
Section 8 — Sequences and series: an iterative recurrence xn+1=g(xn) is a sequence; convergence to a fixed point requires ∣g′(α)∣<1 at the root, which is the section-8 limit-of-sequence concept applied to a section-13 algorithm.
Numerical-methods questions on 9MA0-02 split AO marks across all three categories more evenly than algebra topics:
Subscribe to continue reading
Get full access to this lesson and all 10 lessons in this course.