Extreme and Intermediate Value Theorems
On a closed bounded interval a continuous function attains an absolute maximum and minimum (the extreme value theorem, compactness preserved by continuity) and takes every value between its endpoint values (the intermediate value theorem, connectedness preserved). Both proofs run through Bolzano–Weierstrass and bisection, and yield root-finding, existence of k-th roots, and fixed-point theorems.
╌╌╌╌
Continuity at a point is a local condition. On a closed bounded interval it yields two global theorems that ordinary calculus uses without proof: a continuous function on attains a highest and a lowest value, and it takes every height between its endpoint values. Both rest on the same property of (it is compact: closed and bounded at once), and both are proved from Bolzano–Weierstrass.
Boundedness
One proof template recurs below: build a sequence with a wanted property, then use Bolzano–Weierstrass to make it converge, with closedness returning the limit to the interval.
The extreme value theorem
Each hypothesis is necessary; dropping any one makes the conclusion fail.
| Failure | Example | What breaks |
|---|---|---|
| Interval unbounded | on | no Bolzano–Weierstrass; no max or min |
| Interval not closed | on | limit of subsequence escapes the domain |
| not continuous | (), on | continuity fails at ; no max |
Stated topologically, the theorem is one line: the continuous image of a compact set is compact, hence closed and bounded, hence contains its own supremum and infimum.
The intermediate value theorem
The second theorem says a continuous function skips no values between its endpoint heights. The proof rests on a bisection lemma that doubles as a numerical algorithm.
Stated topologically, IVT is that the continuous image of a connected set is connected: is an interval, and an interval containing and contains everything between. Sharpening the boundedness lemma and IVT together yields that the direct image is itself a closed bounded interval (or a single point).
Applications
Bisection as an algorithm
The proof of the sign-change lemma is a root-finder. It converges for any continuous function, needs only sign evaluations, and reaches any target precision in finitely many steps.
- 1while do
- 2
- 3if then
- 4return
- 5else if then
- 6root lies in the left half
- 7else
- 8root lies in the right half
- 9end if
- 10end while
- 11return
Faster methods exist, Newton's among them, but bisection's guarantee is unconditional once a sign change is found.
Existence proofs
- Odd-degree polynomials have a real root. A monic odd-degree polynomial satisfies as and as , so is positive at some large and negative at some large ; IVT gives a root in .
- -th roots exist. For and , the polynomial is negative at and positive far enough right, so IVT gives an with .
- Fixed points. Any continuous has a fixed point: apply IVT to , which is at and at .
Two of these existence facts are worth spelling out as concrete computations.
The intermediate value property does not, by itself, imply continuity: extended by at the origin has the IVT property while being discontinuous there. A stronger condition, a single that works uniformly across the whole interval, is what a continuous function on automatically satisfies: uniform continuity.
Footnotes
- Lebl, Basic Analysis I, §3.3 — Lemma 3.3.1 (a continuous function on a closed bounded interval is bounded). ↩
- Lebl, Basic Analysis I, §3.3 — Theorem 3.3.2 (minimum–maximum / extreme value theorem) and the examples showing the hypotheses are needed. ↩
- Lebl, Basic Analysis I, §3.3 — Lemma 3.3.7, Theorem 3.3.8 (Bolzano's intermediate value theorem), Proposition 3.3.10, and Corollary 3.3.13. ↩ ↩2
╌╌ END ╌╌