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 covers the Newton-Raphson method for finding roots of equations — as required by the Edexcel A-Level Mathematics specification (9MA0). You need to know the formula, understand how it works, recognise when it fails, and compare it with other numerical methods.
The Newton-Raphson method uses the following iteration formula:
x_{n+1} = x_n - f(x_n) / f'(x_n)
Starting from an initial estimate x₀, this generates a sequence x₁, x₂, x₃, ... that (usually) converges rapidly to a root of f(x) = 0.
At each step, the method:
The tangent at (x_n, f(x_n)) has equation: y - f(x_n) = f'(x_n)(x - x_n)
Setting y = 0 (x-axis crossing): -f(x_n) = f'(x_n)(x - x_n) x = x_n - f(x_n)/f'(x_n)
This is the Newton-Raphson formula.
Key Insight: The method replaces the curve with its tangent at each step. Since the tangent is a good local approximation to the curve, the x-intercept of the tangent is close to the root.
Use the Newton-Raphson method to find a root of f(x) = x³ - 2x - 5, starting from x₀ = 2.
Step 1: Find f'(x) = 3x² - 2.
Step 2: Iterate.
| n | x_n | f(x_n) | f'(x_n) | x_{n+1} = x_n - f/f' |
|---|---|---|---|---|
| 0 | 2 | 8 - 4 - 5 = -1 | 12 - 2 = 10 | 2 - (-1/10) = 2.1 |
| 1 | 2.1 | 9.261 - 4.2 - 5 = 0.061 | 13.23 - 2 = 11.23 | 2.1 - 0.061/11.23 = 2.09457 |
| 2 | 2.09457 | ≈ 0.000089 | ≈ 11.155 | ≈ 2.09455 |
The method converges very quickly. After just 2 iterations, we have the root correct to 5 significant figures: x ≈ 2.0946.
Find a root of f(x) = eˣ - 3x using x₀ = 2.
f'(x) = eˣ - 3
| n | x_n | f(x_n) | f'(x_n) | x_{n+1} |
|---|---|---|---|---|
| 0 | 2 | e² - 6 = 7.389 - 6 = 1.389 | e² - 3 = 4.389 | 2 - 1.389/4.389 = 1.6835 |
| 1 | 1.6835 | e^(1.6835) - 5.0505 = 5.383 - 5.051 = 0.332 | e^(1.6835) - 3 = 2.383 | 1.6835 - 0.332/2.383 = 1.5441 |
| 2 | 1.5441 | e^(1.5441) - 4.6323 = 4.684 - 4.632 = 0.052 | 4.684 - 3 = 1.684 | 1.5441 - 0.052/1.684 = 1.5132 |
| 3 | 1.5132 | ≈ 0.0015 | ≈ 1.541 | ≈ 1.5122 |
Root ≈ 1.512 (3 d.p.)
The Newton-Raphson method has quadratic convergence — this means that the number of correct decimal places roughly doubles with each iteration. This makes it much faster than simple fixed-point iteration.
| Method | Convergence Type | Typical Speed |
|---|---|---|
| Fixed-point iteration | Linear | Slow |
| Newton-Raphson | Quadratic | Fast |
| Bisection | Linear | Reliable but slow |
The method can fail in several situations:
If f'(x_n) = 0, the formula involves division by zero. The tangent is horizontal and never crosses the x-axis.
A bad choice of x₀ can cause the method to:
If f(x) has a turning point near the root, the tangent may overshoot badly, leading to divergence.
If f(x) has a repeated root (e.g., f(x) = (x - 2)²), the convergence slows from quadratic to linear.
| Feature | Newton-Raphson | Fixed-Point Iteration |
|---|---|---|
| Formula | x_{n+1} = x_n - f(x_n)/f'(x_n) | x_{n+1} = g(x_n) |
| Requires | f(x) and f'(x) | A rearrangement x = g(x) |
| Speed | Fast (quadratic convergence) | Slower (linear convergence) |
| Robustness | Can fail near turning points | Depends on |
| Ease of use | Need to differentiate f(x) | Need to find a suitable g(x) |
Let f(x) = x - tan x, so f'(x) = 1 - sec²x.
Note: This equation has infinitely many solutions. We are finding the one near x = 4.5.
| n | x_n | f(x_n) | f'(x_n) | x_{n+1} |
|---|---|---|---|---|
| 0 | 4.5 | 4.5 - tan(4.5) = 4.5 - 4.6373 = -0.1373 | 1 - sec²(4.5) = 1 - 22.498 = -21.498 | 4.5 - (-0.1373)/(-21.498) = 4.4936 |
| 1 | 4.4936 | 4.4936 - 4.4937 = -0.0001 | ≈ -21.16 | 4.4934 |
Root ≈ 4.493 (3 d.p.)
Typical exam questions will ask you to:
Exam Tip: Always show the formula and your substitutions clearly. The examiner needs to see your method, not just the final answer.
Edexcel 9MA0-02 specification section 13 — Numerical methods, sub-strands 13.3 and 13.4 covers the Newton-Raphson method for finding approximate roots of equations of the form f(x)=0. Understand how such methods can fail (refer to the official specification document for exact wording). This sub-strand sits inside Year 2 Pure Mathematics (Paper 2) and is consistently examined as a structured 8-12 mark question. Newton-Raphson connects directly to section 9 (Differentiation, since the iteration formula xn+1=xn−f(xn)/f′(xn) requires fluent computation of f′(x)), section 10 (Integration, where Newton's method appears as the inverse operation in solving F(x)=c), and section 13.1-13.2 (Locating roots and fixed-point iteration, the alternative numerical methods). The Edexcel formula booklet does reproduce the iteration formula, but candidates are expected to derive it geometrically when the question demands explanation. Calculator usage is permitted on Paper 2, but full algebraic working for f′(x) is required.
Question (8 marks):
(a) The equation x3−2x−5=0 has a single real root α in the interval [2,3]. Using the Newton-Raphson method with starting value x0=2, find x1, x2 and x3, giving each iterate to four decimal places. (5)
(b) State, with a reason, whether your value of x3 gives α correct to three decimal places. (3)
Solution with mark scheme:
(a) Step 1 — set up the iteration formula.
With f(x)=x3−2x−5, differentiate to get f′(x)=3x2−2. The iteration is
xn+1=xn−3xn2−2xn3−2xn−5
M1 — correct f′(x) stated and the Newton-Raphson formula written with f and f′ substituted. Common slip: writing f′(x)=3x2 (forgetting the derivative of −2x) — that propagates through every iterate and loses every subsequent A mark.
Step 2 — compute x1.
At x0=2: f(2)=8−4−5=−1 and f′(2)=12−2=10.
x1=2−10−1=2+0.1=2.1
A1 — x1=2.1000 to four decimal places.
Step 3 — compute x2.
At x1=2.1: f(2.1)=9.261−4.2−5=0.061 and f′(2.1)=13.23−2=11.23.
x2=2.1−11.230.061=2.1−0.005432...=2.094568...
To four decimal places, x2=2.0946.
A1 — x2=2.0946.
Step 4 — compute x3.
At x2=2.094568: f(x2)≈(2.094568)3−2(2.094568)−5≈9.18814−4.18914−5≈0.00018 (the value is now extremely small — quadratic convergence in action). f′(x2)≈3(2.094568)2−2≈13.16182−2≈11.16182.
x3=2.094568−11.161820.00018≈2.094568−0.0000161≈2.094552
To four decimal places, x3=2.0946.
M1 A1 — correct method applied at each stage; correct value of x3 to four decimal places.
(b) Step 1 — name the test.
A change-of-sign argument is required. Evaluate f(2.0945) and f(2.0955) — the endpoints of the interval that round to 2.095 — to test whether α definitely lies in this interval.
M1 — recognising that confirming "correct to three decimal places" requires a sign change on [2.0945,2.0955], not merely a small residual at x3.
Step 2 — compute the two values.
f(2.0945)=(2.0945)3−2(2.0945)−5≈9.18815−4.18900−5≈−0.00085.
f(2.0955)=(2.0955)3−2(2.0955)−5≈9.20132−4.19100−5≈0.01032.
A1 — both values correct, with sign change observed: f(2.0945)<0 and f(2.0955)>0.
Step 3 — conclude.
Since f is continuous on [2.0945,2.0955] and changes sign, by the intermediate value theorem there is a root α in this interval. Hence α=2.095 to three decimal places, and x3=2.0946 rounds to the same value, so x3 is correct to three decimal places.
A1 — fully justified conclusion citing continuity and the change-of-sign / intermediate value reasoning.
Total: 8 marks (M3 A5).
Question (6 marks): The equation g(x)=ex−4x=0 has a root β in [2,3].
(a) Show that the Newton-Raphson iteration applied to g gives the formula
xn+1=exn−4(xn−1)exn
(3)
(b) Taking x0=2.2, find x1 to four decimal places. (2)
(c) Explain briefly why taking x0=ln4 would cause the Newton-Raphson method to fail at the first iteration. (1)
Mark scheme decomposition by AO:
(a)
(b)
(c)
Total: 6 marks split AO1 = 4, AO2 = 2. Edexcel typically awards a single AO2.4 reasoning mark for spotting the failure case in part (c) — short answer, but pinpoint accuracy required.
Connects to:
Section 9 — Differentiation: every Newton-Raphson question is also a differentiation question. The iteration cannot proceed without f′(x), and questions deliberately choose f that requires the chain rule, product rule or implicit differentiation. Errors in f′ propagate through every iterate.
Section 13.1 — Locating roots by change of sign: Newton-Raphson finds a root quickly but does not prove the root exists. Examiners pair the methods deliberately: locate-by-sign-change establishes existence on an interval, Newton-Raphson refines the value, and a second sign-change check verifies the final accuracy claim.
Section 13.2 — Fixed-point iteration xn+1=F(xn): Newton-Raphson is itself a fixed-point iteration with F(x)=x−f(x)/f′(x). The convergence condition ∣F′(x)∣<1 near the root is automatically satisfied for Newton-Raphson when f′(α)=0 — which is why it converges quadratically rather than linearly.
Section 6 — Logarithms and exponentials: equations like ex=kx or lnx=mx have no closed-form solution and demand numerical methods. Newton-Raphson is the standard tool, and the differentiation dxdex=ex keeps the iteration formula tractable.
Calculator computation: the Casio fx-991EX SOLVE function and most graphic calculator equation solvers run Newton-Raphson internally. Understanding the algorithm explains why calculators occasionally fail on equations with stationary points near roots and why a sensible starting value matters.
Newton-Raphson questions on 9MA0-02 split AO marks roughly:
| AO | Typical share | Earned by |
|---|---|---|
| AO1 (knowledge / procedure) | 55–65% | Stating f′(x), substituting into the iteration formula, computing iterates to specified accuracy, performing sign-change checks |
| AO2 (reasoning / interpretation) | 25–35% | Justifying convergence claims, identifying failure modes (f′(xn)=0, divergence, oscillation), explaining the geometric interpretation, deducing accuracy by intermediate value theorem |
| AO3 (problem-solving) | 5–15% | Selecting an appropriate starting value, sketching tangent lines to demonstrate failure, modelling a real-world equation as f(x)=0 for numerical solution |
Subscribe to continue reading
Get full access to this lesson and all 10 lessons in this course.