Applications of Derivatives
Derivatives turn local rate information into global conclusions about a function. Once and are known, we can identify increasing and decreasing intervals, local extrema, concavity, inflection points, and approximate behavior near a point. This is the foundation for curve sketching and for many applied decisions.
The central theme is that signs carry meaning. The sign of describes whether the graph rises or falls. The sign of describes how the slope itself changes. Theorems such as Rolle's Theorem and the Mean Value Theorem justify moving from pointwise derivative information to interval-level conclusions.
Definitions
A critical number of is a number in the domain of where
A local maximum occurs at if for all near . A local minimum occurs if for all near . Absolute extrema compare with all values on the specified domain.
The function is increasing on an interval if larger inputs give larger outputs. It is decreasing if larger inputs give smaller outputs. Derivatives provide sufficient tests:
Concavity describes how slope changes. If , then is concave up. If , then is concave down. An inflection point is a point where concavity changes, provided the point is on the graph.
The Mean Value Theorem states that if is continuous on and differentiable on , then there is some such that
Rolle's Theorem is the special case where , so some satisfies .
Key results
The First Derivative Test classifies local extrema by sign changes in :
- If changes from positive to negative at , then has a local maximum at .
- If changes from negative to positive at , then has a local minimum at .
- If does not change sign, then is not a local extremum.
The Second Derivative Test applies when and exists:
If , the test is inconclusive, not proof that no extremum exists.
The Mean Value Theorem gives a proof of the increasing/decreasing test. If and on , then for some ,
Therefore and the function is increasing. The same argument with proves decreasing behavior.
L'Hopital's Rule is a derivative application for limits. If or both functions become infinite, and the hypotheses hold, then
when the derivative limit exists. The rule should be used only for indeterminate forms such as and , not for products or differences until they are rewritten into quotient form.
Curve sketching combines all of these results: domain, intercepts, asymptotes, critical numbers, derivative sign chart, concavity chart, and selected function values.
Absolute extrema require a slightly different mindset from local extrema. A local maximum only wins against nearby points; an absolute maximum wins against the entire specified domain. On a closed interval, endpoints are just as important as critical numbers. On an open interval or an unbounded domain, an absolute extremum may fail to exist even when the function has local extrema.
The Mean Value Theorem also gives useful qualitative consequences. If throughout an interval, then is constant on that interval. If two functions have the same derivative on an interval, then they differ by a constant. These facts explain why antiderivatives come in families and why derivative information can determine a function only up to a vertical shift.
For concavity, the second derivative should be interpreted as the rate of change of slope. A graph can be increasing and concave down when it rises but at a slower and slower rate, such as on . It can be decreasing and concave up when it falls but levels off, such as . This separates first-derivative questions about direction from second-derivative questions about bending.
When using L'Hopital's Rule, other algebra may be preferable. Factoring, rationalizing, standard trigonometric limits, or Taylor polynomials can give more insight. L'Hopital's Rule is powerful, but it is not a substitute for recognizing the form of the expression. It also does not apply to a quotient whose denominator derivative is zero in a way that violates the theorem's hypotheses.
Visual
| Derivative information | Graph conclusion | Caution |
|---|---|---|
| increasing | conclusion is interval-based | |
| decreasing | check all intervals split by critical numbers | |
| horizontal tangent | may not be extremum | |
| concave up | slopes increasing | |
| concave down | slopes decreasing | |
| inflection candidate | concavity must actually change |
Worked example 1: curve sketching with derivative tests
Problem. Analyze
Find increasing and decreasing intervals, local extrema, concavity, and inflection point.
Method.
- Differentiate:
- Critical numbers occur where :
- Make a sign chart for :
| Interval | Test point | Sign of | Behavior |
|---|---|---|---|
| positive | increasing | ||
| negative | decreasing | ||
| positive | increasing |
-
Classify extrema. At , changes positive to negative, so there is a local maximum. At , changes negative to positive, so there is a local minimum.
-
Compute function values:
and
- Compute the second derivative:
- Concavity changes when :
- If , then , so the graph is concave down. If , then , so the graph is concave up. The inflection point is
Checked answer. The function increases on and , decreases on , has a local maximum at , a local minimum at , is concave down on , concave up on , and has inflection point .
Worked example 2: L'Hopital's Rule with an indeterminate limit
Problem. Evaluate
Method.
- Substitute :
The form is indeterminate, so L'Hopital's Rule may be considered.
- Differentiate numerator and denominator:
- The new limit is
- Substitute again:
It is still indeterminate.
- Apply L'Hopital's Rule a second time:
- Substitute:
Checked answer. The limit is . This agrees with the Taylor expansion .
The agreement with Taylor series is a useful check. Near , the numerator behaves like
Dividing by should therefore produce a value near . A numerical table would suggest the same result, but the derivative-based computation supplies the justification.
In a curve-sketching context, derivative tests should be combined with actual function values. A sign chart says where the graph rises and falls, but values such as and anchor the sketch vertically. Asymptotes, intercepts, and end behavior provide additional anchors, especially for rational functions.
Derivative applications are also approximation tools. If is known, then for small . If is known, concavity tells whether the tangent-line estimate tends to lie above or below the graph. For a concave-up function, tangent lines usually sit below the graph near the tangent point; for concave-down functions, they usually sit above. This makes derivative information useful even before an exact graph is drawn carefully by hand or software.
Code
def f(x):
return x**3 - 3*x**2 - 9*x + 5
def fp(x):
return 3*x**2 - 6*x - 9
def fpp(x):
return 6*x - 6
for x in [-2, -1, 0, 1, 3, 4]:
print(x, f(x), fp(x), fpp(x))
Common pitfalls
- Treating every critical number as an extremum. Use a sign change or second derivative test.
- Forgetting that endpoints can be absolute extrema even though may not be zero there.
- Calling an inflection point without checking a concavity change.
- Using L'Hopital's Rule on a non-indeterminate form.
- Losing domain restrictions before building sign charts.
- Confusing increasing with concave up. A graph can be increasing and concave down at the same time.
Connections
- Derivatives and Rates: applications rely on derivative meaning and units.
- Differentiation Rules: accurate derivative computation is required before sign analysis.
- Optimization Newton and Antiderivatives: optimization is a focused derivative application.
- Power Series and Taylor Polynomials: Taylor expansions provide another route to limits and approximation.