Navigation: Wiki Home > Skills > Intermediate Value Theorem
Quick Links: Theorem Statement | Three Requirements | Proof Procedure | Practice
Test yourself on these prerequisite skills:
Noβit has a discontinuity at $x = 1$, which is in $[0, 2]$
$f(1) = 1 - 4 = -3$ and $f(2) = 8 - 8 = 0$
Yesβ0 is between $-2$ and $5$
If you struggled:
If you drive from sea level to a mountain summit, you must pass through every elevation in between. You can't teleport from 0 to 10,000 feetβyou have to go through 5,000 feet along the way.
This obvious physical fact has a profound mathematical counterpart: the Intermediate Value Theorem (IVT). For a continuous function, if you know two output values, the function must hit every value in between. No skipping, no gaps.
Why is this powerful? Because it lets you prove that equations have solutions without finding them. If $f(1) = -3$ and $f(2) = 5$, and $f$ is continuous, then somewhere between $x = 1$ and $x = 2$, there must be a root where $f(c) = 0$. Existence guaranteed.
| Property | Value |
|---|---|
| Chapter | 1.8 |
| Course | MATH161 |
| Difficulty | Intermediate |
| Time | ~25 minutes |
| What You Need | What You Get |
|---|---|
| $f$ continuous on $[a, b]$ | There exists $c \in (a, b)$ |
| $N$ between $f(a)$ and $f(b)$ | such that $f(c) = N$ |
Special Case (Root Finding): If $f(a)$ and $f(b)$ have opposite signs, then $f$ has a root in $(a, b)$.
What IVT Does NOT Tell You:
Intermediate Value Theorem (IVT):
If $f$ is continuous on the closed interval $[a, b]$ and $N$ is any number between $f(a)$ and $f(b)$, then there exists at least one $c \in (a, b)$ such that:
$$\boxed{f(c) = N}$$
f(b) ββββ
β
N ββΌββββββββββββββββββββββ The line y = N
β β±
β β±
β β±
β β±
β β
β c (IVT guarantees this c exists)
β β±
f(a) βββββββββ±
β
a c b
The graph must cross the horizontal line $y = N$ somewhere between $a$ and $b$.
| Requirement | What to Check | If Missing... |
|---|---|---|
| Continuous on $[a, b]$ | No jumps, holes, or asymptotes | IVT doesn't apply |
| $N$ between $f(a)$ and $f(b)$ | $f(a) < N < f(b)$ or $f(b) < N < f(a)$ | No guarantee |
| Closed interval | Includes both endpoints | IVT may fail |
Warning: IVT tells you a solution exists but not where or how many. There could be multiple values of $c$.
The most common application is proving roots exist. Set $N = 0$:
If $f$ is continuous on $[a, b]$ and $f(a)$ and $f(b)$ have opposite signs, then there exists $c \in (a, b)$ with $f(c) = 0$.
This is the foundation of the bisection method for numerical root-finding.
Goal: Show that $f(x) = N$ has a solution in some interval.
Step 1: Identify the function $f$ and the target value $N$.
Step 2: Find an interval $[a, b]$ where:
Step 3: Verify continuity explicitly (polynomial? ratio? composition?).
Step 4: Evaluate $f(a)$ and $f(b)$ and confirm $N$ is between them.
Step 5: Conclude by IVT that there exists $c \in (a, b)$ with $f(c) = N$.
Sometimes you need to hunt for good endpoints:
Strategy 1: Trial and error
Strategy 2: Behavior at extremes
Strategy 3: Known values
| Mistake | Why It's Wrong | Correct Approach |
|---|---|---|
| "Opposite signs means root exists" | Only if $f$ is CONTINUOUS on the interval | Always verify continuity first |
| Forgetting to check for discontinuities | IVT fails if there's a gap | Check rational functions for zeros in denominator |
| Claiming IVT finds the root | IVT only proves existence | Use bisection or other methods to locate |
| Using open interval $(a, b)$ | IVT requires CLOSED interval $[a, b]$ | Must include endpoints |
| Assuming only one root exists | IVT doesn't guarantee uniqueness | Could be 1, 3, 5, ... roots |
Consider $f(x) = \frac{1}{x}$ on $[-1, 1]$.
We have $f(-1) = -1$ and $f(1) = 1$. Zero is between them!
Can we conclude there's a root in $(-1, 1)$?
No! The function is discontinuous at $x = 0$, which is in our interval. IVT does not apply.
The function "jumps" from $-\infty$ to $+\infty$ at $x = 0$ without actually passing through 0.
Moral: Always verify continuity on the ENTIRE closed interval before applying IVT.
Can the IVT be applied to $f(x) = \dfrac{1}{x}$ on the interval $[-1, 1]$ to conclude there is a root? Explain.
A student claims: "I computed $f(0) = 2$ and $f(3) = -1$, so by IVT, there must be a value $c$ where $f(c) = 0$."
What additional information is needed to validate this claim?
(A) Nothingβthe claim is already justified
(B) We need to verify that $f$ is continuous on $[0, 3]$
(C) We need to verify that 0 is between 2 and $-1$
(D) We need to verify that $f$ is differentiable on $(0, 3)$
Show that $f(x) = x^3 - 3x + 1$ has at least one root in the interval $(0, 1)$.
Show that the equation $\cos x = x$ has at least one solution in $[0, 1]$.
Show that the equation $e^x = 3 - 2x$ has at least one solution. Find an interval containing this solution.
Show that $f(x) = x^3 - 6x + 1$ has exactly three real roots. Find an interval containing each root.
Novice (Level 1-2):
Competent (Level 3-4):
Proficient (Level 5):
The bisection method uses IVT repeatedly to narrow down a root's location:
Given: $f$ continuous on $[a, b]$ with $f(a) < 0 < f(b)$ (or opposite signs)
Algorithm:
Example: Find a root of $f(x) = x^3 - x - 1$ in $[1, 2]$.
| Iteration | Interval | Midpoint $m$ | $f(m)$ | New Interval |
|---|---|---|---|---|
| 0 | $[1, 2]$ | 1.5 | 0.875 | $[1, 1.5]$ |
| 1 | $[1, 1.5]$ | 1.25 | β0.297 | $[1.25, 1.5]$ |
| 2 | $[1.25, 1.5]$ | 1.375 | 0.225 | $[1.25, 1.375]$ |
| 3 | $[1.25, 1.375]$ | 1.3125 | β0.051 | $[1.3125, 1.375]$ |
Each iteration halves the interval. After $n$ iterations, the root is known to within $\frac{b-a}{2^n}$.
Fun fact: This is how graphing calculators draw curves! They compute a finite number of points and use IVT to justify "connecting the dots."
The "Elevation" Analogy:
Think of $f(x)$ as your elevation while hiking along a trail from mile marker $a$ to mile marker $b$. If your elevation is 1000 ft at $a$ and 3000 ft at $b$, and the trail is continuous (no teleportation!), then at some point along the way, you must have been at exactly 2000 ft.
The IVT is the "no teleportation" rule for mathematics: continuous functions can't skip values.
Looking back:
Looking ahead:
Real-world connections:
Problem (Stewart Exercise 75): A Tibetan monk leaves the monastery at 7:00 AM and walks up to the mountain summit, arriving at 7:00 PM. The next morning, he starts at 7:00 AM at the summit and walks down the same path, arriving at the monastery at 7:00 PM.
Prove: There is a point on the path that the monk crosses at exactly the same time on both days.
Solution using IVT:
Let $u(t)$ = monk's position on Day 1 (going up), measured as distance from monastery Let $d(t)$ = monk's position on Day 2 (going down), measured as distance from monastery
Define $f(t) = u(t) - d(t)$ for $t \in [7\text{ AM}, 7\text{ PM}]$
At 7:00 AM:
At 7:00 PM:
Since position changes continuously with time, $f$ is continuous on $[7, 19]$.
By IVT: Since $f(7) < 0 < f(19)$, there exists $c$ with $f(c) = 0$.
This means $u(c) = d(c)$βthe monk is at the same position at time $c$ on both days!
Key insight: We didn't find WHEN or WHEREβIVT just guarantees such a moment exists.
| Previous | Up | Next |
|---|---|---|
| Continuity of Combined Functions | Skills Index | Derivatives (Ch 2) |
Last updated: 2026-01-22