Maxima and minima help you find the highest and lowest values a function can reach. These are the foundation of optimization, which shows up constantly in later calculus, physics, and engineering courses. To find them reliably, you need to understand critical points, the Extreme Value Theorem, and the closed interval method.
Maxima and Minima
Absolute vs. Local Extrema
Absolute extrema are the single highest or lowest function values across an entire domain. If for every in the domain, then is the absolute maximum. If for every in the domain, then is the absolute minimum.
Local extrema are high or low points relative to nearby values only. A local maximum at means for all in some small open interval around . A local minimum is the reverse.
A few things to keep straight:
- Every absolute extremum on an open interval is also a local extremum, but a local extremum is not necessarily an absolute one. A function can have several local peaks and valleys, yet only one absolute max and one absolute min on a given domain.
- On a closed interval, absolute extrema can occur at endpoints. Endpoints are not considered local extrema (since you can't look at both sides of an endpoint).

Critical Points
A critical point of occurs at (where is in the domain of ) if either:
- (the tangent line is horizontal), or
- does not exist (corners, cusps, or vertical tangents)
To find critical points:
- Compute .
- Set and solve for .
- Identify any -values in the domain where is undefined.
- Confirm each candidate is actually in the domain of .
Not every critical point is an extremum. For example, has , but is neither a max nor a min. Critical points are candidates for extrema; you still need to test them.

Closed Interval Method for Finding Absolute Extrema
The Extreme Value Theorem guarantees that if is continuous on a closed interval , then must attain both an absolute maximum and an absolute minimum somewhere on that interval. This theorem is what makes the closed interval method work.
Here's the procedure:
- Verify that is continuous on .
- Find all critical points of in the open interval .
- Evaluate at each critical point.
- Evaluate at the endpoints and .
- Compare all the values from steps 3 and 4. The largest is the absolute maximum; the smallest is the absolute minimum.
Example: Find the absolute extrema of on .
-
is a polynomial, so it's continuous everywhere.
-
. Setting gives and . Both are in .
-
-
-
-
Comparing: , , , . The absolute maximum is at , and the absolute minimum is at .
Real-World Significance of Extrema
Optimization problems are one of the biggest applications of derivatives. A few classic examples:
- Maximizing: profit, area enclosed by a fence, volume of a container
- Minimizing: production cost, material used, travel time
For instance, finding the maximum height of a projectile means finding the absolute maximum of its height function on a time interval. Determining the cheapest way to build a container means minimizing a cost function. In each case, you're setting up a function and then using critical points (and often the closed interval method) to locate the extreme values.
Related Concepts
- Inflection points are where the concavity of changes (from concave up to concave down, or vice versa). These are found where or is undefined, but you must verify the concavity actually switches. Inflection points are not extrema, though they often appear between a local max and a local min.
- Monotonicity refers to whether is increasing or decreasing on an interval. If on an interval, is increasing there; if , it's decreasing. A sign change in at a critical point signals a local extremum, which connects directly to the First Derivative Test (covered in the next section).