Every optimization problem—from minimizing manufacturing costs to maximizing profit—comes down to finding where a function reaches its highest or lowest values. But "highest" can mean different things depending on your perspective.
Imagine hiking through a mountain range. You might reach the top of a hill and feel like you're at a high point—you're higher than everything around you. But looking across the range, you can see a much taller mountain in the distance. The hilltop is a local maximum (highest nearby), while the distant peak is the absolute maximum (highest overall).
This distinction matters enormously in applications. A company might find a pricing strategy that's "locally optimal"—better than small adjustments—but miss a completely different strategy that's globally better.
| Property | Value |
|---|---|
| Section | Stewart §4.1 |
| Course | MATH161 |
| Difficulty | Beginner |
| Time | ~15 minutes |
An absolute maximum is the largest value a function attains on its entire domain. An absolute minimum is the smallest value.
Definition: Let $c$ be a number in the domain $D$ of a function $f$. Then $f(c)$ is the:
The absolute maximum and minimum values are called extreme values of $f$.
A local maximum is the largest value in some neighborhood around a point—you compare only to nearby points. A local minimum is the smallest value nearby.
Definition: The number $f(c)$ is a:
Here "near $c$" means on some open interval containing $c$.
f(x)
│ ★ absolute max (at endpoint)
│ /
│ / ○ local max
│ / /\
│ / / \ another endpoint
│ / / \ /
│/ / \ /
└────○───────●─────────── x
local absolute
min min
| Type | Comparison Set | Can Occur at Endpoints? |
|---|---|---|
| Absolute extremum | Entire domain | Yes |
| Local extremum | Some open interval around the point | No (requires open neighborhood) |
Key insight: An absolute extremum can also be a local extremum—but not if it occurs at an endpoint. Endpoints don't have open intervals around them (within the domain), so they can't be local extrema.
| Function | Domain | Absolute Max | Absolute Min | Local Extrema |
|---|---|---|---|---|
| $f(x) = x^2$ | $\mathbb{R}$ | None (unbounded) | $f(0) = 0$ | Local min at 0 |
| $f(x) = x^3$ | $\mathbb{R}$ | None | None | None |
| $f(x) = \cos x$ | $\mathbb{R}$ | $1$ at $x = 2n\pi$ | $-1$ at $x = (2n+1)\pi$ | Infinitely many |
| $f(x) = x^2$ | $[-1, 2]$ | $f(2) = 4$ | $f(0) = 0$ | Local min at 0 only |
For the function $g(x) = -x^2 + 4x$ on the interval $[0, 5]$:
A continuous function $h$ on $[-2, 4]$ has the following values at key points:
Find:
Consider $f(x) = \dfrac{x}{x+1}$ on each domain. Determine whether an absolute maximum and absolute minimum exist, and find them if they do.
Let $f(x) = \begin{cases} 4 - x^2 & \text{if } -2 \leq x < 1 \\ x + 1 & \text{if } 1 \leq x \leq 3 \end{cases}$
True or False (justify your answer):
"If a continuous function $f$ on $[1, 5]$ has its absolute maximum at $x = 5$, then $f$ must have a local maximum somewhere in the interval."
The Mountain Range Perspective:
Think of zooming in and out on a topographical map:
A hilltop in one valley might not be the highest point overall. Similarly, a local maximum of $f$ might not be the absolute maximum—there could be a higher value somewhere else (including at an endpoint).
The key question is always: "Highest compared to what?"
Looking back:
Looking ahead:
| Previous | Up | Next |
|---|---|---|
| — | Section Index | Extreme Value Theorem |
Last updated: 2026-01-22