24 min read
The Derivative
The derivative is the limit of the secant gradient as the gap between two points shrinks to zero.
Defining the Derivative
f'() = lim(h→) [f( + h) − f()] ÷ h
This is exactly the secant-gradient idea from two lessons ago, written as a limit. Instead of shrinking h with a table, algebra lets you find the exact limit in one go.
Example 1 — deriving f'(x) for f(x) = x²
Use the definition to find the derivative of f() = .
- f( + h) = ( + h)² = xh +
- f( + h) − f() = (xh + ) − xh +
- Divide by h: (2xh + ) ÷ h = + h
- Let h approach : + h →
Answer: f'() =
Example 2 — checking against earlier numbers
Use f'() = to find the gradient of at .
- f'() =
This matches the shrinking-h table from two lessons ago, where the secant gradient at was heading straight for .
Practice
Using f'() = for f() = , find f'().
Your answer
More lessons in Calculus · Next: The Power Rule · Previous: Limits
