Decision Tree for Application of Derivatives Problems:
Q: What type of problem?
Branch A: "Find intervals of increase/decrease"
- Compute f'(x)
- Factor f'(x) completely
- Find zeros and undefined points of f'
- Make sign chart
- f' > 0 => increasing, f' < 0 => decreasing
Branch B: "Find local maxima/minima"
- Find critical points (f'(c) = 0 or f'(c) DNE)
- Is f''(c) easy to compute?
- Yes and f''(c) != 0 => Use second derivative test
- No or f''(c) = 0 => Use first derivative test (sign chart)
- Report the point and the value f(c)
Branch C: "Find global max/min on [a, b]"
- Find all critical points in (a, b)
- Evaluate f at each critical point
- Evaluate f at endpoints a and b
- Compare all values: largest = global max, smallest = global min
Branch D: "Optimization word problem"
- Draw diagram, identify objective and constraint
- Express objective as f(x) using constraint
- Determine domain of x
- Find critical points via f'(x) = 0
- Verify with second derivative test or endpoint check
- Substitute back for the answer
Branch E: "Verify Rolle's/MVT and find c"
- Check conditions: continuity on [a,b], differentiability on (a,b)
- For Rolle's: also check f(a) = f(b)
- Compute the required slope (0 for Rolle's, [f(b)-f(a)]/(b-a) for MVT)
- Solve f'(c) = slope
- Verify c is in (a, b)
Branch F: "Prove an inequality"
- Define g(x) = LHS - RHS (or similar)
- Show g(a) = 0 for some boundary point a
- Show g'(x) > 0 (or < 0) on the relevant interval
- Conclude g(x) > 0 (or < 0) by monotonicity
Branch G: "Find tangent/normal"
- Find the point (x0, y0) on the curve
- Compute slope m = f'(x0)
- Tangent: y - y0 = m(x - x0)
- Normal: y - y0 = (-1/m)(x - x0)
- If m = 0: tangent is horizontal, normal is vertical
- If m is undefined: tangent is vertical, normal is horizontal
Branch H: "Monotonicity with parameter"
- Compute f'(x) in terms of the parameter
- Set up condition f'(x) >= 0 (or <= 0) for all x
- For quadratic f': discriminant <= 0 with correct leading coefficient sign
- Solve for the parameter range