This is a beta course, so its structure, chapters, and examples may continue to change.
Determination of Extrema
Graphical Method
Basic Idea
The most intuitive way to locate extrema is to look at the graph:
- Maximum point: the graph reaches a local highest point there
- Minimum point: the graph reaches a local lowest point there
When to Use It
- The graph is easy to draw
- You need a quick estimate of where extrema occur
- As a verification for other methods
Caveats
- A graph gives intuition, not a rigorous proof
- For complicated functions the picture may be imprecise
- Combine it with other methods to confirm
Numerical Comparison Method
Basic Idea
For a given point, compare nearby function values:
- Maximum: if f(x0) is greater than all other values in its neighborhood
- Minimum: if f(x0) is less than all other values in its neighborhood
Steps
- Choose test points: pick a few points near the suspected extremum
- Evaluate: compute the function values at those points
- Compare: compare them with the value at the suspected point
- Conclude: decide whether it is an extremum
Example
For f(x)=x2−4x+3, suspect x=2:
- f(2)=−1
- f(1)=0>−1
- f(3)=0>−1
So x=2 is a minimum point.
The numerical comparison method is simple and intuitive, but you must choose suitable test points, and it cannot guarantee finding all extrema.
Derivative Method (Advanced)
The derivative method belongs to differential calculus and applies when the function is differentiable. It is the most rigorous method.
Necessary Condition
If f is differentiable at x0 and attains an extremum there, then f′(x0)=0.
Sufficient Conditions
First Sufficient Condition
Let f(x) be continuous on a neighborhood of x0 and differentiable on a punctured neighborhood:
- Maximum: f′(x)>0 for x<x0, and f′(x)<0 for x>x0
- Minimum: f′(x)<0 for x<x0, and f′(x)>0 for x>x0
Second Sufficient Condition
Let f(x) be twice differentiable at x0 with f′(x0)=0:
- Maximum: f′′(x0)<0
- Minimum: f′′(x0)>0
Examples
Example 1
Find the extrema of the function f(x)=x3−3x2+2.
Reference Answer(5 个标签)
extremaderivative methodstationary pointsmaximumminimum
Solution Approach:
Use the derivative method to find extrema, combined with graphical method for verification.
Detailed Steps:
-
Find the derivative:
f′(x)=3x2−6x=3x(x−2)
-
Find stationary points:
Set f′(x)=0, get x=0 or x=2
-
Determine extrema type:
- When x<0, f′(x)>0 (function increasing)
- When 0<x<2, f′(x)<0 (function decreasing)
- When x>2, f′(x)>0 (function increasing)
-
Conclusion:
- x=0 is a maximum point
- x=2 is a minimum point
-
Calculate extrema values:
- f(0)=2 (maximum)
- f(2)=8−12+2=−2 (minimum)
Answer:
The function has a maximum value of 2 at x=0 and a minimum value of −2 at x=2.
Example 2
Find the extrema of the function f(x)=∣x∣.
Reference Answer(4 个标签)
extremanon-differentiable functionnumerical comparison methodminimum
Solution Approach:
This is a non-differentiable function that requires special handling.
Detailed Steps:
-
Analyze function properties:
f(x)=∣x∣ is non-differentiable at x=0 but continuous.
-
Use numerical comparison method:
- f(0)=0
- For any x=0, f(x)>0
-
Conclusion:
x=0 is a minimum point with minimum value 0.
-
Verification:
The function reaches its global minimum at x=0.
Answer:
The function has a minimum value of 0 at x=0.
Exercises
Exercise 1
Find the extrema of the function f(x)=x4−4x2.
Reference Answer(5 个标签)
extremaderivative methodmultiple stationary pointsmaximumminimum
Solution Approach:
Use the derivative method to find extrema.
Detailed Steps:
-
Find the derivative:
f′(x)=4x3−8x=4x(x2−2)
-
Find stationary points:
Set f′(x)=0, get x=0 or x=±2
-
Determine extrema type:
- When x<−2, f′(x)<0
- When −2<x<0, f′(x)>0
- When 0<x<2, f′(x)<0
- When x>2, f′(x)>0
-
Conclusion:
- x=−2 is a minimum point
- x=0 is a maximum point
- x=2 is a minimum point
-
Calculate extrema values:
- f(−2)=4−8=−4 (minimum)
- f(0)=0 (maximum)
- f(2)=4−8=−4 (minimum)
Answer:
The function has a maximum value of 0 at x=0 and minimum values of −4 at x=±2.
Exercise 2
Find the extrema of the function f(x)=sinx+cosx on the interval [0,2π].
Reference Answer(5 个标签)
extrematrigonometric functionsinterval extremamaximumminimum
Solution Approach:
Use the derivative method to find extrema.
Detailed Steps:
-
Find the derivative:
f′(x)=cosx−sinx
-
Find stationary points:
Set f′(x)=0, get cosx=sinx
That is tanx=1, so x=4π+kπ, k∈Z
On [0,2π], stationary points are x=4π and x=45π
-
Determine extrema type:
- When 0<x<4π, f′(x)>0
- When 4π<x<45π, f′(x)<0
- When 45π<x<2π, f′(x)>0
-
Conclusion:
- x=4π is a maximum point
- x=45π is a minimum point
-
Calculate extrema values:
- f(4π)=sin4π+cos4π=22+22=2 (maximum)
- f(45π)=sin45π+cos45π=−22−22=−2 (minimum)
Answer:
The function has a maximum value of 2 at x=4π and a minimum value of −2 at x=45π.