Derivatives don’t just compute rates — they help analyze functions, optimize systems, and describe motion. This topic covers how to use derivatives to understand behavior such as increasing/decreasing intervals, extrema, concavity, inflection points, and more.
f'(x) = 0
or f'(x)
is undefined.f'(x) > 0
, the function is increasing; if f'(x) < 0
, it is decreasing.f'
changes from positive to negative → local maxf'
changes from negative to positive → local minf''(x)
f''(x) > 0
, the graph is concave upf''(x) < 0
, the graph is concave downf''(x) = 0
and sign changes)L(x) = f(a) + f'(a)(x - a)
f
is continuous on [a, b] and differentiable on (a, b), then f'(c) = \frac{f(b) - f(a)}{b - a}
for some c
in (a, b)f'
and f''
to determine shape.
f(x) = x^3 - 3x
is increasing or decreasing.
Step 1: Find f'(x) = 3x^2 - 3
Step 2: Set f'(x) = 0
→ 3x^2 - 3 = 0 → x = ±1
Step 3: Test sign of f'
in intervals:
f'(x) > 0
→ increasingf'(x) < 0
→ decreasingf'(x) > 0
→ increasingFinal Answer: Increasing on (−∞, −1) ∪ (1, ∞); Decreasing on (−1, 1)
f(x) = x^4 - 4x^2
Step 1: Find f''(x) = 12x^2 - 8
Step 2: Set f''(x) = 0
→ 12x^2 - 8 = 0
→ x = ±√(2/3)
Step 3: Test concavity changes around those points
Final Answer: Inflection points at x = ±√(2/3)