The Intermediate Value Theorem¶
Remark 1 (Application to Root Finding)
Setting : if is continuous and (i.e., changes sign), then a root exists in .
This gives us an existence guarantee—something bisection exploits at every step.
The Algorithm¶
The bisection method is a divide and conquer algorithm.
At each step, the interval width is halved. This geometric reduction is why bisection always converges.
Convergence Analysis¶
Proof 1
At each step, the interval width halves. The midpoint is at most half the interval width away from any point in the interval, including the root :
Since , we have .
Proof 2
Example 1 (How Many Iterations?)
To find (root of ) on with accuracy 10-10:
So 33 iterations suffice—regardless of the function’s complexity!
Demonstrations¶
Advantages and Disadvantages¶
Advantages:
Guaranteed convergence — Cannot fail if you have a sign change
Predictable — Know exactly how many iterations before you start
Simple — Only needs function evaluations, no derivatives
Robust — Immune to pathologies that break faster methods
Disadvantages:
Slow — Linear convergence; ~34 iterations for 10 digits (vs. 4-5 for Newton)
Requires bracket — Must find interval with sign change first
Scalar only — No generalization to systems in
Practical wisdom: Use bisection to get close, then switch to Newton for speed.