When an equation cannot be solved exactly, we approximate. This mini-lesson covers root location by change of sign, fixed-point iteration x = g(x) (with staircase and cobweb diagrams), the Newton–Raphson method, and the trapezium rule — including when it over- or under-estimates.
Where this sits:Unit A2 1: Pure Mathematics — numerical methods: location of roots, iterative methods including Newton–Raphson, and numerical integration by the trapezium rule.
Work through each screen, answer the questions as you go (some are reasoning, some are calculations) and collect ⭐ stars. Press Start when you are ready.
Root location
Change of sign
If f is continuous on [a, b] and f(a) and f(b) have opposite signs, then f has at least one root in (a, b).
Worked example — f(x) = eˣ − 3x
f(1) = e − 3 = 2.718 − 3 = −0.282 (negative)
f(2) = e² − 6 = 7.389 − 6 = +1.389 (positive)
Sign change ⇒ a root lies between 1 and 2. ∎
Two traps: (1) the method fails if f is discontinuous (e.g. 1/(x − 1.5) changes sign across an asymptote with no root); (2) an even number of roots in the interval produces no sign change, so "no sign change" does not prove "no root".
Convergence: the iteration converges near a root if |g′(x)| < 1 there, and diverges if |g′(x)| > 1. A different rearrangement of the same equation can diverge — that is why the exam gives you the rearrangement to use. Diagrams: a staircase when g′ > 0, a cobweb when g′ < 0.
Calculate
One iteration
2Use xₙ₊₁ = (xₙ + 3)^(1/3) with x₀ = 1 to find x₁, to 3 decimal places.
Hint: x₁ = (1 + 3)^(1/3) = 4^(1/3) = 1.5874.
Quick check
Why no sign change?
?f is continuous and f(2) and f(3) are both positive. What can you conclude about roots in (2, 3)?
Newton–Raphson
The tangent method
xₙ₊₁ = xₙ − f(xₙ)/f′(xₙ)follow the tangent at xₙ down to the x-axis — that landing point is the next estimate
When it fails: if f′(x₀) = 0 the tangent is horizontal and never meets the axis (division by zero); a starting value near a turning point can throw the iteration far away.
Calculate
Newton–Raphson, first step
3f(x) = x³ − 2x − 5 and x₀ = 2. Use Newton–Raphson to find x₁.
The exact value is [x³/3]₀⁴ = 64/3 = 21.33, so the trapezium rule over-estimates here.
Which way? The chords lie above a convex curve (f″ > 0), so the rule over-estimates; they lie below a concave curve, so it under-estimates. For a straight line it is exact. Increasing n improves accuracy.
Calculate
Trapezium rule
5Use the trapezium rule with 4 strips (h = 1) to estimate ∫₀⁴ x² dx.