Finding Local Maxima and Minima with Derivatives
To determine where a function has local maxima or minima (collectively called extrema), you use calculus:
Steps using derivatives:
- Find critical points:
- Compute the first derivative,
f'(x). - Solve
f'(x) = 0or wheref'(x)is undefined. - Classify each critical point:
- Use the second derivative,
f''(x), for the Second Derivative Test: - If
f''(c) > 0, you have a local minimum atx = c. - If
f''(c) < 0, you have a local maximum atx = c. - If
f''(c) = 0, the test is inconclusive-try other methods (like the First Derivative Test). - Compute
f'(x) = 3x^2 - 3 - Set
f'(x) = 0: - Find
f''(x) = 6x - At
x = -1:f''(-1) = -6(max) - At
x = 1:f''(1) = 6(min) - Use
f'(x)to find critical points, then checkf''(x)to classify each. - This method helps identify where a function turns up (minimum) or down (maximum).
Example:
Let f(x) = x^3 - 3x + 1
3x^2 - 3 = 0 → x^2 = 1 → x = -1, 1
Takeaway: