When Leibniz first studied derivatives, he guessed that the derivative of a product would be the product of the derivatives: $(fg)' = f'g'$. He quickly discovered this was wrong.
Here's a simple counterexample: Let $f(x) = x$ and $g(x) = x$. Then:
The actual formula is more interesting, and once you understand it geometrically, it makes perfect sense.
| Property | Value |
|---|---|
| Concept | Differentiation Formulas |
| Chapter | 2.3 |
| Difficulty | Intermediate |
| Time | ~20 minutes |
If $f$ and $g$ are both differentiable, then:
$$\boxed{\frac{d}{dx}[f(x)g(x)] = f(x) \cdot g'(x) + g(x) \cdot f'(x)}$$
In prime notation: $$(fg)' = fg' + gf'$$
In words: "First times the derivative of second, plus second times the derivative of first."
Imagine a rectangle with sides $f(x)$ and $g(x)$. Its area is $A = f(x) \cdot g(x)$.
g(x) Δg
┌──────────────┬─────┐
│ │ │
f(x)│ Original │ New │ Δf
│ Area │strip│
│ │ │
├──────────────┼─────┤
│ New strip │tiny │
└──────────────┴─────┘
f·Δg Δf·Δg
When both sides increase slightly:
The rate of change of area is approximately: $$\frac{\Delta A}{\Delta x} \approx f \cdot \frac{\Delta g}{\Delta x} + g \cdot \frac{\Delta f}{\Delta x}$$
Taking the limit as $\Delta x \to 0$ gives us the Product Rule!
Let $F(x) = f(x)g(x)$. Then:
$$F'(x) = \lim_{h \to 0}\frac{f(x+h)g(x+h) - f(x)g(x)}{h}$$
The trick: Add and subtract $f(x+h)g(x)$ in the numerator:
$$= \lim_{h \to 0}\frac{f(x+h)g(x+h) - f(x+h)g(x) + f(x+h)g(x) - f(x)g(x)}{h}$$
$$= \lim_{h \to 0}\left[f(x+h) \cdot \frac{g(x+h) - g(x)}{h} + g(x) \cdot \frac{f(x+h) - f(x)}{h}\right]$$
$$= f(x) \cdot g'(x) + g(x) \cdot f'(x)$$
(Note: $\lim_{h \to 0} f(x+h) = f(x)$ because $f$ is continuous.)
Mnemonic 1: "First d-second plus second d-first"
Mnemonic 2: Think of $f$ and $g$ as "partners"
❌ Wrong: $(fg)' = f' \cdot g'$ (product of derivatives)
✓ Right: $(fg)' = fg' + gf'$ (sum of two terms)
Remember: If this were true, then $(x \cdot x)' = 1 \cdot 1 = 1$, but we know $(x^2)' = 2x$.
Find $\frac{d}{dx}[(x^2)(x^3)]$ using the Product Rule.
Then verify by first multiplying and differentiating.
Differentiate $h(x) = (3x + 2)(x^2 - 1)$.
Find $f'(t)$ if $f(t) = \sqrt{t}(t^2 + 3t - 1)$.
Suppose $h(x) = xg(x)$, where $g(4) = 6$ and $g'(4) = -2$. Find $h'(4)$.
A company's revenue is $R = p \cdot q$ where $p$ is price per unit and $q$ is quantity sold. At the current price, $p = 20$, $q = 1000$, $\frac{dp}{dt} = 0.50$ (price increasing), and $\frac{dq}{dt} = -30$ (quantity decreasing).
Is revenue increasing or decreasing? By how much per time unit?
For which functions $f$ is it true that $(xf(x))' = f(x) + xf'(x)$?
Think of products as "partnerships":
When two quantities are multiplied together and both change, the total rate of change has two contributions:
It's like two people painting a wall together: the total progress depends on each person's contribution while the other holds steady.
| Previous | Up | Next |
|---|---|---|
| Sum/Difference Rules | Skills Index | Quotient Rule |
Last updated: 2026-01-22