Regula Falsi (False Position)
At a Glance
- Frequency: 1 sub-part across 1 of 13 years (2023)
- Priority tier: T4
- Marks (count): 15 (1)
- Average solve time: ~25 min
- Difficulty mix: medium 1
- Section: B | Dominant type: computation
Why This Chapter Matters
Regula Falsi sits at the intersection of bracketing methods and interpolation — it replaces the mechanical midpoint of bisection with the chord intersection, making it faster in practice while preserving the sign-change guarantee. UPSC 2023 tested it as a Section B computation: carry out two or three iterations by hand with clean arithmetic, showing the updated bracket after each step.
Minimum Theory
Setup. Given continuous on with , the false-position approximation is the -intercept of the straight line joining and :
Bracket update. Evaluate :
- If : root is in ; set .
- If : root is in ; set .
- If : stop.
Key distinction from bisection. In bisection the bracket always halves. In regula falsi one endpoint may be fixed for many iterations (the chord keeps rotating about the same anchor), so the bracket does not shrink as uniformly.
Convergence. Linear (order 1), with an asymptotic constant that depends on and . It is generally faster than bisection on smooth functions but can stagnate when is highly curved.
Modified Regula Falsi (Illinois method). If the same endpoint is retained twice in a row, halve its -value before the next step. This breaks stagnation and achieves superlinear convergence. UPSC has not tested this variant but awareness is useful context.
Comparison with secant method. Both use a chord through two recent points, but:
| Feature | Regula Falsi | Secant |
|---|---|---|
| Maintains bracket | Yes | No |
| Convergence order | 1 (linear) | |
| Guaranteed convergence | Yes (if cont., sign change) | No |
Formula mnemonic. Think of the chord ; set and solve for .
Question Archetypes
| Archetype | Recognition |
|---|---|
| iterate-k-steps | Apply regula falsi for a given number of steps; show each bracket update |
| compare-methods | Explain how regula falsi differs from bisection or secant |
iterate-k-steps (1 question; 2023)
Recognition Cues
- “Apply the method of false position” or “use regula falsi.”
- A specific equation and a specific number of iterations (usually 2–3).
- Marks are awarded step-by-step, so every bracket update must be shown.
Solution Template
- Verify the root bracket: compute and , confirm opposite signs.
- Compute using the formula; evaluate .
- Determine new bracket by comparing signs of , , .
- Repeat for the requested number of iterations.
- State the final approximation and, if asked, the error relative to the exact root.
Worked Example
2023 Paper 2, 2023-P2-Q5b (15 marks)
Using the method of false position, find a real root of correct to two decimal places (perform at least 3 iterations).
Step 0 — locate the bracket.
Root lies in . Set , .
Iteration 1.
Since and : root is in .
Set , .
Iteration 2.
,
Root is in . Set , .
Iteration 3.
,
Root is in .
Conclusion. After 3 iterations the root is approximately , correct to two decimal places. (The true root is .)
Common Traps
- Using the midpoint formula instead of the chord-intercept formula — that is bisection, not regula falsi.
- Forgetting to update the bracket: both and must be updated when the left endpoint changes (and similarly for ).
- Sign error in : when and , the denominator is ; do not reverse the sign.
- Rounding intermediate values too aggressively — carry at least 4 decimal places through the iteration.
Marks-Aware Writing
Section B questions at 15 marks expect three full iterations with every intermediate value shown. Allocate roughly 4 marks per iteration (bracket check + formula + evaluation + update) plus 3 marks for the conclusion and any discussion of convergence. Never skip directly to the answer — the working is where the marks live.
Practice Set
Only one historical question on this atom (shown above).