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 iterative methods for solving equations — rearranging f(x) = 0 into the form x = g(x) and using iteration — as required by the Edexcel A-Level Mathematics specification (9MA0). You need to understand convergence and divergence, and interpret staircase and cobweb diagrams.
Many equations cannot be solved exactly using algebraic methods. For example:
In these cases, we use numerical methods to find approximate solutions. Iterative methods generate a sequence of values x₁, x₂, x₃, ... that (hopefully) converge to the root.
If the sequence converges to a limit L, then as n → ∞: x_{n+1} → L and x_n → L
So the iteration formula x_{n+1} = g(x_n) becomes L = g(L).
This means L satisfies x = g(x), which is equivalent to f(x) = 0.
Solve x³ + 3x - 7 = 0 near x = 1.
Step 1: Rearrange to x = g(x). x³ + 3x - 7 = 0 → 3x = 7 - x³ → x = (7 - x³)/3
So g(x) = (7 - x³)/3.
Step 2: Choose x₀ = 1 and iterate.
| n | x_n |
|---|---|
| 0 | 1 |
| 1 | (7 - 1)/3 = 2 |
| 2 | (7 - 8)/3 = -1/3 = -0.3333 |
| 3 | (7 - (-0.3333)³)/3 = (7 + 0.0370)/3 = 2.3457 |
| 4 | (7 - 12.917)/3 = -1.9724 |
The values are oscillating and getting further apart — this rearrangement is diverging. We need a different rearrangement.
Step 3: Try another rearrangement. x³ + 3x - 7 = 0 → x³ = 7 - 3x → x = (7 - 3x)^(1/3)
So g(x) = (7 - 3x)^(1/3).
| n | x_n |
|---|---|
| 0 | 1 |
| 1 | (7 - 3)^(1/3) = 4^(1/3) = 1.5874 |
| 2 | (7 - 4.7622)^(1/3) = 2.2378^(1/3) = 1.3077 |
| 3 | (7 - 3.9231)^(1/3) = 3.0769^(1/3) = 1.4547 |
| 4 | (7 - 4.3641)^(1/3) = 2.6359^(1/3) = 1.3809 |
| 5 | 1.4186 |
| 6 | 1.3998 |
| 7 | 1.4093 |
The values are converging to approximately x ≈ 1.405.
Key Point: The same equation can have multiple rearrangements. Some converge and some diverge. The choice of rearrangement matters.
The iteration x_{n+1} = g(x_n) converges to a root α if:
|g'(α)| < 1
The iteration diverges if |g'(α)| > 1.
These diagrams illustrate how the iteration works graphically by plotting y = g(x) and y = x.
When the iteration converges monotonically (each value approaches from the same side), the path traces a staircase pattern:
This produces a staircase pattern approaching the intersection of y = g(x) and y = x.
A staircase occurs when 0 < g'(α) < 1.
When the iteration converges with values alternating above and below the root, the path traces a cobweb (spiral) pattern.
A cobweb occurs when -1 < g'(α) < 0.
The choice of starting value x₀ can affect whether the iteration converges:
Any equation f(x) = 0 can be rearranged into x = g(x) in many different ways.
Example: x³ - 5x + 3 = 0
Possible rearrangements:
Each rearrangement may converge to a different root or may not converge at all. Check |g'(x)| < 1 near the expected root to predict convergence.
Use the iteration x_{n+1} = √(5 - 1/x_n) to find a root of x² + 1/x - 5 = 0, starting from x₀ = 2.
| n | x_n |
|---|---|
| 0 | 2 |
| 1 | √(5 - 0.5) = √4.5 = 2.1213 |
| 2 | √(5 - 1/2.1213) = √(5 - 0.4714) = √4.5286 = 2.1281 |
| 3 | √(5 - 1/2.1281) = √4.5302 = 2.1285 |
The sequence is converging rapidly to x ≈ 2.128.
Convergence check: g(x) = √(5 - 1/x), so g'(x) = 1/(2√(5 - 1/x)) × 1/x²
At x ≈ 2.128: g'(2.128) ≈ 0.052. Since |0.052| < 1, the iteration converges.
Edexcel 9MA0-02 specification section 13 — Numerical methods, sub-strand 13.3 covers equations approximately using simple iterative methods; be able to draw associated cobweb and staircase diagrams (refer to the official specification document for exact wording). This sits inside Year 2 Pure Mathematics and is examined on Paper 2. It builds directly on sub-strand 13.1 (locate roots of f(x)=0 by sign change) and sub-strand 13.4 (Newton–Raphson). Iterative methods also appear synoptically with section 6 (logarithms and exponentials) when rearrangements involve ln or ex, with section 7 (sequences and series) through the recurrence-relation framing xn+1=g(xn), and with section 9 (differentiation) because the convergence test ∣g′(x∗)∣<1 requires confident calculus. The Edexcel formula booklet does not list any iterative-method results — convergence criteria and rearrangement strategies must be memorised.
Question (8 marks): The equation x3−3x+1=0 has a root α in the interval (0,1).
(a) Show that the equation can be rearranged into the form x=3x3+1. (1)
(b) Using the iterative formula xn+1=3xn3+1 with x0=0.4, find x1, x2 and x3, giving each value to 4 decimal places. (3)
(c) By considering g′(x) where g(x)=3x3+1, comment on whether the iteration converges to α. (4)
Solution with mark scheme:
(a) Starting from x3−3x+1=0, add 3x to both sides:
x3+1=3x⟹x=3x3+1
B1 — correct rearrangement shown with at least one intermediate step. Examiners will not award the mark for simply stating the result; the algebraic move +3x (or equivalent) must appear.
(b) Substitute repeatedly:
x1=3(0.4)3+1=30.064+1=31.064=0.3547(4 dp).
M1 — correct substitution into the iterative formula and at least one value reported to a sensible accuracy.
x2=3(0.3547)3+1=30.04464+1=0.3482(4 dp).
x3=3(0.3482)3+1=30.04221+1=0.3474(4 dp).
A1 — correct x1=0.3547 to 4 dp.
A1 — correct x2 and x3 both to 4 dp; small rounding tolerances accepted provided the candidate's chain is internally consistent.
(c) Differentiate g(x)=3x3+1:
g′(x)=33x2=x2
M1 — correct derivative g′(x)=x2.
The sequence appears to be converging toward α≈0.347 (continuing the iteration stabilises near this value). At the root, ∣g′(α)∣=α2≈(0.347)2≈0.120.
M1 — evaluating ∣g′(x)∣ at (or near) the root using the candidate's iterated values.
Since ∣g′(α)∣≈0.120<1, the iteration converges to α from x0=0.4.
A1 — correct numerical value of ∣g′(α)∣ stated and compared with 1.
A1 — explicit conclusion linking ∣g′(α)∣<1 to convergence, with the magnitude (significantly less than 1) suggesting fairly rapid convergence — a "staircase" pattern toward the root because g′ is positive.
Total: 8 marks (B1 M3 A4, split as shown).
Question (6 marks): The equation 2x−cosx−1=0 has a single real root β in the interval (0.5,1).
(a) Show that the equation can be written in the form x=21+cosx. (1)
(b) Use the iterative formula xn+1=21+cosxn with x0=0.8 to find x1, x2 and x3, each to 4 decimal places. (Use radians.) (3)
(c) Determine whether the iteration produces a cobweb or a staircase pattern around β, justifying your answer. (2)
Mark scheme decomposition by AO:
(a)
(b)
(c)
Total: 6 marks split AO1 = 4, AO2 = 2. This is a classic Paper 2 specimen — procedural iteration earns AO1, while the cobweb-vs-staircase reasoning is rewarded as AO2 because it demands interpretation of the sign of g′.
Connects to:
Iterative-method questions on 9MA0-02 split AO marks more evenly than algebra topics:
| AO | Typical share | Earned by |
|---|---|---|
| AO1 (knowledge / procedure) | 50–60% | Correct substitution into the iterative formula, accurate decimal values, evaluating g′(x) correctly |
| AO2 (reasoning / interpretation) | 30–40% | Justifying the rearrangement choice, comparing $ |
| AO3 (problem-solving) | 5–15% | Choosing between competing rearrangements, deciding whether to refine x0, recognising when an iteration diverges and selecting an alternative form |
Subscribe to continue reading
Get full access to this lesson and all 10 lessons in this course.