Newton’s method is much faster than bisection, but it pays for this speed with lower robustness: it may fail to converge if the initial conditions are unfavourable.
Example — Comparison with bisection
Bisection applied to on gives an error after about iterations; Newton does it in . Trade-off: bisection requires only (and a sign change); Newton requires and an initial estimate that is “close enough”.
Warning — When Newton fails
Convergence is not guaranteed in every case:
- If at some point division by zero, divergence.
- If is chosen badly, the iteration may “jump” away and oscillate (for example starting from produces a cycle ).
- Near multiple zeros convergence is only linear, no longer quadratic.
The common strategy is hybrid: first a couple of bisection steps to “get close”, then Newton to refine quickly.
In summary: bisection is the safe but slow choice; Newton is the fast but delicate choice. In numerical practice the two are combined, exploiting the robustness of the one to guarantee a good initial estimate and the speed of the other for the final precision.
Links
Topics: Continuity
Concepts: Bisection algorithm · Quadratic convergence · Newton-Raphson method
Methods: Newton-Raphson
Skills: Analysis of limiting cases · Reasoning by cases