TheoremComplete

Intermediate Value Theorem

The Intermediate Value Theorem (IVT) states that a continuous function on an interval takes on every value between its endpoints. This intuitive result β€” continuous functions have "no jumps" β€” relies fundamentally on the completeness of R\mathbb{R}. The IVT guarantees roots of equations, fixed points, and is the basis for the bisection method in numerical analysis.


Statement

Theorem4.1Intermediate Value Theorem

Let f:[a,b]β†’Rf : [a, b] \to \mathbb{R} be continuous. If yy is any value between f(a)f(a) and f(b)f(b) (i.e., f(a)≀y≀f(b)f(a) \leq y \leq f(b) or f(b)≀y≀f(a)f(b) \leq y \leq f(a)), then there exists c∈[a,b]c \in [a, b] such that f(c)=yf(c) = y.

RemarkConnectedness

The IVT is equivalent to saying that the continuous image of a connected set (an interval) is connected. Since connected subsets of R\mathbb{R} are intervals, f([a,b])f([a, b]) is an interval, hence contains all values between its endpoints.


Proof

Proof

Without loss of generality, assume f(a)<y<f(b)f(a) < y < f(b) (the case f(a)>y>f(b)f(a) > y > f(b) is similar). Define

S={x∈[a,b]∣f(x)<y}.S = \{x \in [a, b] \mid f(x) < y\}.

Then Sβ‰ βˆ…S \neq \varnothing (since a∈Sa \in S) and SS is bounded above (by bb). By completeness, c=sup⁑Sc = \sup S exists.

Claim: f(c)=yf(c) = y.

We show f(c)<ΜΈyf(c) \not< y and f(c)>ΜΈyf(c) \not> y, leaving f(c)=yf(c) = y.

Case 1: Suppose f(c)<yf(c) < y. Since ff is continuous at cc, there exists Ξ΄>0\delta > 0 such that ∣xβˆ’c∣<Ξ΄β€…β€ŠβŸΉβ€…β€Šβˆ£f(x)βˆ’f(c)∣<(yβˆ’f(c))/2|x - c| < \delta \implies |f(x) - f(c)| < (y - f(c))/2. In particular, for x∈(c,c+Ξ΄)∩[a,b]x \in (c, c + \delta) \cap [a, b],

f(x)<f(c)+yβˆ’f(c)2<y.f(x) < f(c) + \frac{y - f(c)}{2} < y.

Thus (c,c+Ξ΄)∩[a,b]βŠ†S(c, c + \delta) \cap [a, b] \subseteq S, contradicting that c=sup⁑Sc = \sup S (since c+Ξ΄/2>cc + \delta/2 > c is in SS).

Case 2: Suppose f(c)>yf(c) > y. By continuity, there exists Ξ΄>0\delta > 0 such that ∣xβˆ’c∣<Ξ΄β€…β€ŠβŸΉβ€…β€Šβˆ£f(x)βˆ’f(c)∣<(f(c)βˆ’y)/2|x - c| < \delta \implies |f(x) - f(c)| < (f(c) - y)/2. For x∈(cβˆ’Ξ΄,c)∩[a,b]x \in (c - \delta, c) \cap [a, b],

f(x)>f(c)βˆ’f(c)βˆ’y2>y.f(x) > f(c) - \frac{f(c) - y}{2} > y.

Thus f(x)>yf(x) > y for all x∈(cβˆ’Ξ΄,c)x \in (c - \delta, c), so cβˆ’Ξ΄c - \delta is an upper bound for SS, contradicting that c=sup⁑Sc = \sup S.

Thus f(c)=yf(c) = y.

β– 

Applications

ExampleExistence of roots

If f(a)<0<f(b)f(a) < 0 < f(b), the IVT guarantees a root c∈(a,b)c \in (a, b) with f(c)=0f(c) = 0. For instance, f(x)=x3+xβˆ’1f(x) = x^3 + x - 1 satisfies f(0)=βˆ’1<0f(0) = -1 < 0 and f(1)=1>0f(1) = 1 > 0, so ff has a root in (0,1)(0, 1).

ExampleBrouwer fixed-point theorem (1D)

If f:[0,1]β†’[0,1]f : [0, 1] \to [0, 1] is continuous, then ff has a fixed point: there exists x∈[0,1]x \in [0, 1] with f(x)=xf(x) = x.

Proof: Consider g(x)=f(x)βˆ’xg(x) = f(x) - x. Then g(0)=f(0)β‰₯0g(0) = f(0) \geq 0 and g(1)=f(1)βˆ’1≀0g(1) = f(1) - 1 \leq 0. By IVT, there exists c∈[0,1]c \in [0, 1] with g(c)=0g(c) = 0, i.e., f(c)=cf(c) = c.

ExampleBisection method

To approximate a root of f(x)=0f(x) = 0 where f(a)f(b)<0f(a) f(b) < 0, repeatedly bisect the interval: if f((a+b)/2)<0f((a+b)/2) < 0, set aβ€²=(a+b)/2a' = (a+b)/2; otherwise set bβ€²=(a+b)/2b' = (a+b)/2. The IVT guarantees each subinterval contains a root. After nn bisections, the root is localized to an interval of width (bβˆ’a)/2n(b - a)/2^n.

ExampleNo discontinuous bijection [a, b] β†’ R

There is no bijection f:[0,1]β†’Rf : [0, 1] \to \mathbb{R} that is continuous. Proof: if ff were such a bijection, then by the IVT, f([0,1])f([0, 1]) would be an interval. But the only intervals mapping bijectively to R\mathbb{R} are unbounded intervals, contradicting f([0,1])f([0, 1]) being the continuous image of a compact set (which must be compact, hence closed and bounded).


IVT fails without completeness

ExampleIVT fails over Q

Define f:[0,2]∩Qβ†’Qf : [0, 2] \cap \mathbb{Q} \to \mathbb{Q} by f(x)=x2f(x) = x^2. Then f(0)=0f(0) = 0 and f(2)=4f(2) = 4, so 0<2<40 < 2 < 4. However, there is no c∈[0,2]∩Qc \in [0, 2] \cap \mathbb{Q} with f(c)=2f(c) = 2 (since 2βˆ‰Q\sqrt{2} \notin \mathbb{Q}). The IVT fails over Q\mathbb{Q} because Q\mathbb{Q} is not complete.


Summary

The Intermediate Value Theorem is fundamental in analysis:

  • Continuous functions on intervals take all intermediate values.
  • Proof uses completeness (existence of suprema).
  • Applications: root-finding, fixed points, bisection method.
  • Equivalent to connectedness of intervals.

See Extreme Value Theorem and Connectedness for related results.