To find the absolute maxima and minima of a continuous function on a closed interval [a,b][a,b], Weierstrass’s theorem guarantees that they exist. The practical method consists of building a table of candidates.

In brief — Table method for absolute max/min

  1. Compute f(x)f'(x) and find all the stationary points (f(x)=0f'(x)=0) interior to (a,b)(a,b).
  2. Compute ff at the stationary points and at the endpoints a,ba, b.
  3. Put everything into a table and compare: the largest value is the absolute maximum, the smallest the absolute minimum.

The idea is that an absolute extremum on [a,b][a,b] can fall only at an interior stationary point or at an endpoint of the interval: it is therefore enough to compute ff at these few candidate points and compare their values.

xxy=f(x)y=f(x)Type
aaf(a)f(a)Left endpoint
bbf(b)f(b)Right endpoint
x1x_1f(x1)f(x_1)Stationary point
x2x_2f(x2)f(x_2)Stationary point

\to absolute max == largest yy value    \to absolute min == smallest yy value

Example — Absolute max/min on an interval

Let us look for the absolute maximum and minimum of f(x)=x33xf(x) = x^3-3x on [0,7][0,7]. The derivative is f(x)=3x23=0    x=±1f'(x) = 3x^2-3 = 0 \iff x=\pm 1; only x=1(0,7)x=1\in(0,7) is interior to the interval (the other is outside).

xxf(x)f(x)Type
0000Endpoint
7734321=322343-21=322Endpoint
1113=21-3=-2f=0f'=0

Comparing the values: absolute maximum 322\boxed{322} at x=7x=7, absolute minimum 2\boxed{-2} at x=1x=1.

Topics: Function study
Concepts: Absolute maxima and minima · Stationary point · Weierstrass’s theorem
Skills: Studying a function