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. Specifically, if \( f''(c) < 0 \) at a critical point \( c \), the function is concave down, indicating a local maximum. Conversely, if \( f''(c) > 0 \), the function is concave up, suggesting a local minimum. If \( f''(c) = 0 \), the test is inconclusive, and one must revert to the first derivative test.
To illustrate this process, consider the function \( f(x) = x^3 - 3x^2 + 4 \). The first step is to compute the first derivative, \( f'(x) \), which is found using the power rule:
\( f'(x) = 3x^2 - 6x = 3x(x - 2) \)
Setting \( f'(x) = 0 \) gives critical points at \( x = 0 \) and \( x = 2 \). Next, we calculate the second derivative:
\( f''(x) = 6x - 6 = 6(x - 1) \)
Now, we evaluate the second derivative at the critical points:
For \( x = 0 \):
\( f''(0) = 6(0) - 6 = -6 \) (negative, indicating a local maximum)
For \( x = 2 \):
\( f''(2) = 6(2) - 6 = 6 \) (positive, indicating a local minimum)
Thus, the local extrema are identified: a local maximum at \( x = 0 \) and a local minimum at \( x = 2 \). To find the corresponding function values, substitute these critical points back into the original function:
For \( x = 0 \): \( f(0) = 0^3 - 3(0)^2 + 4 = 4 \)
For \( x = 2 \): \( f(2) = 2^3 - 3(2)^2 + 4 = 2 \)
In summary, the local maximum occurs at \( (0, 4) \) and the local minimum at \( (2, 2) \). This method of using the second derivative test is an efficient way to determine the nature of critical points in a function.