Bisection Method (Convergence, Error)
At a Glance
- Frequency: 1 sub-part across 1 of 13 years (2018)
- Priority tier: T4
- Marks (count): 10 (1)
- Average solve time: ~18 min
- Difficulty mix: medium 1
- Section: A | Dominant type: derivation
Why This Chapter Matters
Bisection is the canonical example of a bracketing root-finding method and the benchmark against which all other methods are measured. UPSC 2018 tested the convergence and error analysis rather than mere computation, so the derivation of the error bound is the core skill. Knowing how many iterations are needed for a given precision is the clean, marks-focused answer UPSC rewards.
Minimum Theory
Existence (Intermediate Value Theorem). If is continuous on and , then there exists at least one root .
Algorithm. At each step, compute the midpoint:
- If , set , .
- If , set , .
- If , stop — is exact.
The bracket length is halved at every step: .
Error bound. After steps the approximate root is and the true root satisfies
because lies inside the bracket of length and is its midpoint.
Number of iterations for tolerance . We need
A conservative round-up formula is
Rate of convergence. Let . Then , so
This is linear convergence with rate constant and asymptotic constant .
Comparison table.
| Method | Order | Requires bracket? |
|---|---|---|
| Bisection | 1 (linear) | Yes |
| Regula Falsi | 1 (linear) | Yes |
| Secant | No | |
| Newton–Raphson | 2 (quadratic) | No |
Question Archetypes
| Archetype | Recognition |
|---|---|
| error-bound-derivation | Derive the error bound or convergence rate; show |
| iteration-count | Given tolerance and initial bracket, find minimum |
| apply-iterations | Carry out bisection steps by hand and state the approximation |
error-bound-derivation (1 question; 2018)
Recognition Cues
- “Derive the convergence” or “prove the error bound” for bisection.
- Examiner wants a clean mathematical argument, not just the formula.
Solution Template
- State the IVT condition: continuous on , .
- Define as the bracket after steps; note .
- Since and is the midpoint, .
- Take limits: as the bound , so .
- State the convergence rate: — linear convergence.
Worked Example
2018 Paper 2, 2018-P2-Q1a (10 marks)
Show that the bisection method converges linearly to a root of in , and find how many iterations are needed to locate the root with error less than .
Check bracket. and . Since is continuous and signs differ, IVT guarantees a root in .
Error bound derivation.
Define the -th bracket with , , so . After each bisection step the bracket is halved, giving
The approximation satisfies , hence
Since for all , the ratio independently of — this is linear convergence (order , asymptotic constant ).
Iteration count for .
We need , i.e.
More directly:
So , giving .
Conclusion. A minimum of bisection iterations guarantee .
Common Traps
- Off-by-one: the bound after step is , not .
- Forgetting to verify before claiming the root exists.
- Confusing “linear convergence” (order 1) with “convergence is slow” — these are not the same statement; it is a precise mathematical order.
- Using instead of in the iteration-count formula without converting.
Marks-Aware Writing
For a 10-mark derivation question, structure your answer in three explicit parts: (1) state the IVT and bracket halving, (2) derive the error bound with a brief proof, (3) solve the iteration count inequality with visible arithmetic. Each part is worth 3–4 marks. The examiner expects you to show the inequality explicitly — do not skip to the answer.
Practice Set
Only one historical question on this atom (shown above).