To find local extrema of a function, the second derivative test is a powerful method that utilizes the sign of the second derivative. This approach complements the first derivative test, which identifies critical points where the first derivative is zero or undefined. The second derivative, denoted as \( f''(x) \), provides insight into the concavity of the function, which is crucial for determining whether a critical point is a local maximum or minimum.
When applying the second derivative test, follow these steps:
1. **Identify Critical Points**: Start by finding the first derivative \( f'(x) \) of the function and set it equal to zero to locate critical points. For example, if \( f(x) = x^3 - 3x^2 + 4 \), the first derivative is calculated as:
\[ f'(x) = 3x^2 - 6x = 3x(x - 2) \]
Setting \( f'(x) = 0 \) gives critical points at \( x = 0 \) and \( x = 2 \).
2. **Evaluate the Second Derivative**: Next, compute the second derivative \( f''(x) \). For the function above, the second derivative is:
\[ f''(x) = 6x - 6 = 6(x - 1) \]
3. **Determine the Sign of the Second Derivative**: Plug the critical points into the second derivative to assess its sign:
- For \( x = 0 \):
\[ f''(0) = 6(0) - 6 = -6 \] (negative)
This indicates that the function is concave down at \( x = 0 \), confirming a local maximum.
- For \( x = 2 \):
\[ f''(2) = 6(2) - 6 = 6 \] (positive)
This indicates that the function is concave up at \( x = 2 \), confirming a local minimum.
4. **Conclusion**: From the evaluations, we conclude that there is a local maximum at \( x = 0 \) and a local minimum at \( x = 2 \). To find the actual maximum and minimum values, substitute these critical points back into the original function:
- For \( x = 0 \): \( f(0) = 0^3 - 3(0)^2 + 4 = 4 \) (local maximum value)
- For \( x = 2 \): \( f(2) = 2^3 - 3(2)^2 + 4 = -2 \) (local minimum value)
In summary, the second derivative test is an effective method for identifying local extrema by analyzing the concavity of the function at critical points. Remember, if the second derivative equals zero, further analysis using the first derivative test is necessary.