[Calculus Bible]
Calculus Bible Chapter 3: Applications of Differentiation
This post summarizes Chapter 3 of James Stewart's Calculus.
3.1 Maximum and Minimum Values#
Optimization problems ultimately reduce to finding the maximum or minimum value of a function. (p.150)
Let be a number in the domain of . Then for all in :
- If , then is the absolute maximum of on .
- If , then is the absolute minimum of on .
The maximum and minimum values of are called the extreme values of .
When is near :
- If , then is a local maximum of .
- If , then is a local minimum of .
Fermat's Theorem (p.152)
If has a local maximum or minimum at and exists, then . (The converse does not hold.)
Critical Numbers (p.154)
A critical number of a function is a number in the domain of such that either or does not exist.
3.2 The Mean Value Theorem#
Rolle's Theorem (p.157)
Suppose satisfies the following three conditions:
- is continuous on the closed interval .
- is differentiable on the open interval .
Then there exists a number in such that .
The Mean Value Theorem (p.159)
Suppose satisfies the following conditions:
- is continuous on the closed interval .
- is differentiable on the open interval .
Then there exists a number in such that:
or equivalently:
In plain terms: "There is always a point where the instantaneous rate of change equals the average rate of change over the interval."
The Mean Value Theorem can be used to prove several fundamental facts in calculus. (See corollaries on p.162.)
3.3 How Derivatives Affect the Shape of a Graph#
Most applications of calculus depend on the ability to deduce information about a function from information about its derivatives. (p.164)
What tells us about
Increasing/Decreasing Test
(a) If on an interval, then is increasing on that interval. (b) If on an interval, then is decreasing on that interval.
The First Derivative Test
Let be a critical number of a continuous function . (a) If changes from positive to negative at , then has a local maximum at . (b) If changes from negative to positive at , then has a local minimum at . (c) If does not change sign at , then has neither a local maximum nor a local minimum at .
What tells us about (p.167)
If the graph of lies above all of its tangents on an interval , then is concave upward on . If the graph of lies below all of its tangents on an interval , then is concave downward on .
Inflection Points (p.168)
A point on the curve is called an inflection point if is continuous at and the curve changes concavity (from upward to downward, or from downward to upward) at .
Concavity Test (p.168)
(a) If for all in , then the graph of is concave upward on . (b) If for all in , then the graph of is concave downward on .
The Second Derivative Test (p.169)
Suppose is continuous near . (a) If and , then has a local minimum at . (b) If and , then has a local maximum at .
3.4 Curve Sketching#
SKIP (p.172)
3.5 Optimization Problems#
We can apply the methods for finding extreme values to solve optimization problems. (p.180) These include problems that maximize area, volume, or profit, and problems that minimize distance, time, or cost.
Steps for Solving Optimization Problems
- Understand the problem. Read it carefully until you understand it. Identify: what you want to find, what is given, and what conditions are imposed.
- Draw a diagram.
- Introduce notation. Assign a symbol to the quantity to be maximized or minimized (call it ). Also assign symbols to other unknown quantities and label them on the diagram (e.g., area , height , time , etc.).
- Express in terms of the symbols from Step 3.
- If is expressed as a function of more than one variable, use the given information to find equations relating those variables. Eliminate variables to express as a function of a single variable: . Determine the domain of this function.
- Find the absolute maximum or minimum of using the methods from Sections 3.1 and 3.3.
See worked examples on p.181 and beyond.
3.6 Newton's Method#
There is no general formula for the exact roots of polynomial equations of degree five or higher, or for transcendental equations involving trigonometric functions. (p.190)
For example, suppose we want to solve:
Numerical roots are most commonly found using the Newton-Raphson method, or simply Newton's method:
If the sequence converges to as grows large, we say the sequence converges to and write:
Note, however, that Newton's method does not work for every function. For some functions the successive approximations may diverge, or the method may converge very slowly.
3.7 Antiderivatives#
A function is called an antiderivative of on an interval if for all in . (p.196)
If is an antiderivative of on an interval , then the most general antiderivative of on is , where is an arbitrary constant.
Summary#
- Absolute extrema: extreme values over the entire domain — candidates are found at critical numbers
- Fermat's Theorem: if an extreme value exists, then (converse fails)
- Rolle's Theorem: if , there must exist with
- Mean Value Theorem: there always exists a point where the instantaneous rate equals the average rate of change
- Increasing/Decreasing: means increasing; means decreasing
- Concavity: means concave up; means concave down
- Optimization: define variables → build objective function → find extrema via derivatives
- Newton's Method: numerically approximates roots of equations using tangent lines
- Antiderivatives: satisfying — general solution is
// Related Posts
Calculus Bible Chapter 2: Derivatives
James Stewart's Calculus, Chapter 2 — a concise summary covering derivatives and rates of change, the definition of the derivative, basic differentiation rules, the chain rule, implicit differentiation, related rates, and linear approximation.
Calculus Bible Chapter 1: Functions and Limits
James Stewart's Calculus Chapter 1 — a concise summary covering the definition and types of functions, the concept of limits and their computation laws, continuity, and limits involving infinity.