When algebra runs out
Quadratics have a formula. Cubics have one too, though it is horrible, and quartics have one that nobody uses. Beyond that, no formula exists — and it is not that nobody has found one, it is that no such formula can exist. Mixed equations such as x = cos x or e^x = 3x are hopeless from the start, because there is no rearrangement that isolates x.
Most equations that describe real situations are of this kind. So instead of solving them exactly, we locate a root and then close in on it until we have as many decimal places as the question asks for. That is what a numerical method is: a procedure that produces a sequence of better and better approximations.
Approximate does not mean careless
A numerical answer is not a worse answer. It is an answer with a stated accuracy, which is exactly what every physical measurement is too. What matters is being able to say how accurate it is — which is why questions always specify the number of decimal places and often ask you to justify it.
Step one: trap the root between two numbers
Before refining anything you need to know roughly where the root is. The tool is the sign change, and the reasoning behind it is worth stating properly because examiners want it stated properly.
If f is continuous on the interval and f(a) and f(b) have opposite signs, then somewhere between a and b the curve must pass through zero — it cannot jump from negative to positive without touching it. So a root lies in that interval.
On Sign change, f(1) is negative and f(2) is positive, so a root is trapped between them. Then switch to It converges and It fails and drag the iteration count — same equation, two rearrangements, completely different behaviour.
Continuity is part of the argument
The sign-change test only works if the function is continuous across the interval. f(x) = 1/(x − 2) changes sign either side of x = 2 and has no root there at all — it has an asymptote. A full answer says "f is continuous on [a, b] and f(a) < 0 < f(b), so there is a root between them." Dropping the word continuous costs a mark.
Step two: iterate
Rearrange the equation into the form x = F(x). Then feed a starting value into F, take what comes out, feed it back in, and repeat. If the sequence settles down, the value it settles on satisfies x = F(x) — which is the equation you started with.
Written formally, the sequence is x₍ₙ₊₁₎ = F(xₙ). The notation looks heavier than the idea: it just means "the next one is F of the current one".
- x₀
- the starting valueusually an integer either side of the root
- F
- the rearrangementmany are possible from one equation
- xₙ
- the nth approximationeach one produced from the one before
The equation x³ − x − 1 = 0 has a root α between 1 and 2. Use the iteration x₍ₙ₊₁₎ = ∛(xₙ + 1) with x₀ = 1 to find α correct to 3 decimal places.
- x₁ = ∛(1 + 1) = ∛2 = 1.2599Substituting the starting value. Keep more decimals than the answer needs — rounding early is the main source of error here.
- x₂ = ∛(2.2599) = 1.3123Each value goes straight back into the same formula. On a calculator, type the expression once and press ANS repeatedly.
- x₃ = ∛(2.3123) = 1.3224The values are closing in; the changes are getting smaller each time.
- x₄ = 1.3242, x₅ = 1.3246, x₆ = 1.3247Continue until two successive values agree to the accuracy required.
- x₅ and x₆ both round to 1.325, so α = 1.325 to 3 d.p.The justification is the agreement of successive values, not simply stopping when you are bored.
α = 1.325 (3 d.p.)
Why some rearrangements fail
Here is the part that surprises people. The same equation can be rearranged in several ways, all algebraically correct, and they do not behave the same. x³ − x − 1 = 0 can become x = ∛(x + 1), which converges, or x = x³ − 1, which flies away from the root no matter how close you start.
The diagram above shows why. The iteration bounces between the curve y = F(x) and the line y = x. If the curve is shallower than the line near the root, each bounce lands closer and the staircase spirals in. If it is steeper, each bounce overshoots by more than the last and the staircase walks off the page.
The syllabus does not require the formal condition for convergence. It does require you to know that failure is possible, and to recognise it when a sequence starts running away.
| Behaviour of the sequence | What it means |
|---|---|
| values settle on one number | converged — that number is the root |
| values grow without limit | diverged — try a different rearrangement |
| values alternate but close in | converging in a spiral; still fine |
| values alternate and grow | diverged |
| calculator gives a maths error | the sequence left the domain of F, e.g. a negative square root |
If it diverges, you have not made a mistake
A diverging iteration usually means the rearrangement was unsuitable, not that your arithmetic was wrong. In an exam the given iteration will converge, so a runaway sequence is a signal to check your rearrangement or your calculator mode — not to keep grinding out values hoping it turns around.
Showing that a rearrangement is correct
A very common opening part is: "Show that the equation f(x) = 0 can be written in the form x = F(x)." This is pure algebra and carries easy marks, but only if you work in the right direction.
Start from the equation you were given and rearrange it into the target form. Do not start from the target and work back — it proves the same thing logically, but examiners want to see the stated equation transformed, and a reversed argument sometimes loses the mark.
Show that the equation 2x³ − 5x + 1 = 0 can be written in the form x = ∛((5x − 1)/2).
- Start from 2x³ − 5x + 1 = 0.Always begin with the equation as given.
- Move the other terms across: 2x³ = 5x − 1.Isolating the cubic term, since the target has x³ under a cube root.
- Divide by 2: x³ = (5x − 1)/2.Matching the inside of the cube root in the target form.
- Take the cube root of both sides: x = ∛((5x − 1)/2), as required.Cube root is safe to take on both sides for all real values, unlike a square root which would need a sign discussion.
x = ∛((5x − 1)/2)
The full method, in order
- Show a sign change, stating that f is continuous, to prove a root exists.
- Rearrange the given equation into x = F(x), working forwards.
- Iterate from the given x₀, keeping extra decimal places throughout.
- Stop when successive values agree to the accuracy required, and say so.
- State the final answer rounded as the question asked — not to more places than requested.