Quick Fix Summary:
To quickly check if a function is climbing or sliding, take its first derivative and look at the sign. A positive result means the function is rising; a negative one means it’s falling. Want to find peaks and valleys? Run the first-derivative test by watching how the sign flips around critical spots.
What’s Happening: The Role of the First Derivative
Think of the first derivative, written as f'(x) or dy/dx, as the function’s speedometer. It tells you how fast the function’s output is changing at any instant. Geometrically, it’s the slope of the tangent line at that point—so if the slope tilts upward, the function is increasing; if it tilts downward, the function is decreasing. In physics, the first derivative of a position function gives velocity—how fast and in what direction an object is moving. Over in economics, the first derivative of a cost function reveals marginal cost, which businesses use to fine-tune production levels.
Step-by-Step Solution: Finding and Interpreting the First Derivative
- Find the derivative of the function.
Pick the right rule—power, product, quotient, or chain—and apply it. For f(x) = 3x² + 2x − 5, the first derivative is f'(x) = 6x + 2. - Identify critical points.
Set f'(x) = 0 and solve for x. These spots have zero slope—possible peaks, valleys, or flat stretches. In our example: 6x + 2 = 0 → x = −1/3. - Test intervals around critical points.
Pick test numbers on either side of each critical point and plug them into f'(x). A positive result means the function is climbing; a negative result means it’s sliding. - Apply the first-derivative test.
If f'(x) switches from positive to negative at a critical point, you’ve found a local maximum. If it flips from negative to positive, that’s a local minimum. No flip? No peak or valley there.
Let’s test our example. Plug x = −1 into f'(x) = 6x + 2 and you get f'(−1) = −4 (negative). Now try x = 0 and you get f'(0) = 2 (positive). Because the derivative flips from negative to positive, x = −1/3 is a local minimum.
Note on Higher-Order Derivatives
The first derivative shows slope and direction, but the second derivative, f''(x), tells you how fast that slope itself is changing. A positive second derivative means the curve is concave up (like a cup); a negative one means concave down (like a cap). This helps spot inflection points and double-check whether a critical point is really a max or min. According to the Khan Academy, the second-derivative test can confirm extrema without relying only on sign changes.