What Is The Product Rule?
The product rule is the formula for the derivative of two functions multiplied together. If a function is written as a product $f(x) = u(x),v(x)$, where $u$ and $v$ are both differentiable, then its derivative is
$$f'(x) = u'(x),v(x) + u(x),v'(x)$$
In compact form, with $u$ and $v$ standing for the two factors,
$$(uv)' = u'v + uv'$$
Read it aloud as a rhythm: "derivative of the first times the second, plus the first times the derivative of the second." Both factors get a turn at being differentiated, and the two results are added.
The product rule appears in India's NCERT Class 12 (Continuity and Differentiability) and in the United States under the Common Core (CCSS) high-school calculus strand and AP Calculus AB, and it underpins every later differentiation technique in both curricula.
Throughout this article we use one derivative notation, the prime: $u'$ means the derivative of $u$, the same object as $\frac{du}{dx}$. The operator $\frac{d}{dx}(\ \cdot\ )$ is used only to say "take the derivative of what is inside." For the wider family of differentiation shortcuts this rule belongs to, see the Bhanzu note on calculus.
The single most important thing to fix in your memory sits in the next line, because it is the mistake almost every learner makes first.
Why Is The Product Rule Not Just The Product Of Derivatives?
It is tempting to guess that $(uv)' = u'v'$, copying the pattern from addition where $(u+v)' = u' + v'$. That guess is wrong, and one tiny example proves it.
Take $u(x) = x$ and $v(x) = x$, so the product is $u,v = x \cdot x = x^2$.
The true derivative is $\dfrac{d}{dx}(x^2) = 2x$.
The naive "product of derivatives" gives $u'v' = (1)(1) = 1$.
Since $2x \neq 1$, the shortcut fails outright. Now check the real product rule on the same example:
$$(uv)' = u'v + uv' = (1)(x) + (x)(1) = 2x \checkmark$$
The product rule lands exactly on $2x$. The derivative of a product is a sum of two terms, and each term differentiates only one factor at a time while leaving the other alone. Keep both terms and you are safe; drop one, or multiply the derivatives together, and you lose the mark.
How Do You Derive The Product Rule From The Limit Definition?
The rule is not a rule of thumb. It follows from the definition of the derivative, which measures the rate of change of a function over a shrinking step $h$:
$$f'(x) = \lim_{h \to 0} \frac{f(x+h) - f(x)}{h}$$
Apply this to $f(x) = u(x),v(x)$:
$$f'(x) = \lim_{h \to 0} \frac{u(x+h),v(x+h) - u(x),v(x)}{h}$$
The numerator is stuck: it mixes new values and old values with no obvious way to split them. Here is the one clever step of the whole proof — add and subtract the same quantity $u(x+h),v(x)$ in the numerator. It changes nothing (the added and subtracted pieces cancel), but it lets everything factor:
$$f'(x) = \lim_{h \to 0} \frac{u(x+h),v(x+h) - u(x+h),v(x) + u(x+h),v(x) - u(x),v(x)}{h}$$
Group the four terms into two pairs and pull out the common factor from each pair:
$$f'(x) = \lim_{h \to 0} \left[, u(x+h),\frac{v(x+h) - v(x)}{h} + v(x),\frac{u(x+h) - u(x)}{h} ,\right]$$
Now let $h \to 0$ and read each piece:
$\dfrac{v(x+h) - v(x)}{h} \to v'(x)$, the definition of $v'$.
$\dfrac{u(x+h) - u(x)}{h} \to u'(x)$, the definition of $u'$.
$u(x+h) \to u(x)$, because a differentiable function is continuous.
$v(x)$ does not depend on $h$, so it stays put.
Putting the limits together gives the product rule:
$$f'(x) = u(x),v'(x) + v(x),u'(x) = u'v + uv'$$
That is the whole proof. The add-and-subtract trick is the load-bearing idea, and the same move powers the proofs of the quotient rule and the chain rule.
What Is The Geometric Meaning Of The Product Rule?
The algebra is airtight, but the picture is what makes the rule unforgettable. Think of the product $u,v$ as the area of a rectangle with width $u$ and height $v$.
Now nudge $x$ forward a little. The width grows by a small amount $\Delta u$ and the height grows by a small amount $\Delta v$. The rectangle's area grows by an L-shaped border made of three pieces:
$$\Delta(uv) = \underbrace{v,\Delta u}{\text{bottom strip}} + \underbrace{u,\Delta v}{\text{side strip}} + \underbrace{\Delta u,\Delta v}_{\text{tiny corner}}$$
Divide the whole change by $\Delta x$ and let $\Delta x \to 0$:
The bottom strip contributes $v,\dfrac{\Delta u}{\Delta x} \to v,u'$.
The side strip contributes $u,\dfrac{\Delta v}{\Delta x} \to u,v'$.
The corner contributes $\Delta u,\dfrac{\Delta v}{\Delta x} \to 0$, because $\Delta u$ itself shrinks to zero.
The tiny corner square vanishes in the limit, and what survives is exactly $u'v + uv'$. This is why the answer has two terms and not one: when both sides of a rectangle grow, the area gains along two edges at the same time. It also shows visually why the naive $u'v'$ guess is the corner piece alone, the one contribution small enough to disappear.
How Do You Apply The Product Rule? (Worked Examples)
The method is always the same three steps: name the two factors $u$ and $v$, write down $u'$ and $v'$, then assemble $u'v + uv'$.
Example 1: Differentiate $x^2 \sin x$.
Let $u = x^2$ and $v = \sin x$. Then $u' = 2x$ and $v' = \cos x$.
$$\frac{d}{dx}\left(x^2 \sin x\right) = u'v + uv' = (2x)(\sin x) + (x^2)(\cos x)$$
$$= 2x\sin x + x^2\cos x$$
Final answer: $2x\sin x + x^2\cos x$.
For the derivatives of the trig factor used here, see differentiation of trigonometric functions.
Example 2: Differentiate $x,e^{x}$.
Let $u = x$ and $v = e^{x}$. Then $u' = 1$ and $v' = e^{x}$ (the exponential is its own derivative).
$$\frac{d}{dx}\left(x,e^{x}\right) = (1)\left(e^{x}\right) + (x)\left(e^{x}\right) = e^{x} + x e^{x}$$
Factor the common $e^{x}$:
$$= e^{x}(1 + x) = e^{x}(x + 1)$$
Final answer: $e^{x}(x+1)$. A quick sanity check: at $x = 0$ this gives $e^{0}(0+1) = 1$, and the graph of $xe^{x}$ does rise with slope $1$ through the origin.
Example 3: Extend to three factors, $x,e^{x}\sin x$.
For three functions the pattern grows by one term: differentiate each factor in turn, leaving the other two alone, then add.
$$(uvw)' = u'vw + uv'w + uvw'$$
With $u = x$, $v = e^{x}$, $w = \sin x$, so $u' = 1$, $v' = e^{x}$, $w' = \cos x$:
$$\frac{d}{dx}\left(x,e^{x}\sin x\right) = (1),e^{x}\sin x + x,e^{x}\sin x + x,e^{x}\cos x$$
Factor the common $e^{x}$:
$$= e^{x}\left(\sin x + x\sin x + x\cos x\right)$$
Final answer: $e^{x}\left(\sin x + x\sin x + x\cos x\right)$.
The three-factor rule is just the two-factor rule applied twice: treat $x,e^{x}$ as one block, differentiate against $\sin x$, then expand the block. Every factor is differentiated exactly once per term, which is the fingerprint of the product rule at any length.
Which Derivative Rules Sit Next To The Product Rule?
The product rule is one of a small family of differentiation rules. Knowing when each applies is half the battle, so this table sorts them by the shape of the function.
Table: The core differentiation rules and when each one fires.
Rule | Shape of the function | Derivative |
|---|---|---|
Sum rule | $u + v$ | $u' + v'$ |
Constant multiple | $k,u$ | $k,u'$ |
Product rule | $u,v$ | $u'v + uv'$ |
Quotient rule | $u ,/, v$ | $(u'v - uv') ,/, v^{2}$ |
Chain rule | $u(v(x))$ | $u'(v(x))\cdot v'(x)$ |
Two cautions live in this table. First, the sum rule really does split term by term, and copying that comfort onto products is the error the product rule exists to correct. Second, the product rule and the quotient rule look almost alike, but the quotient rule subtracts and then divides by $v^2$, so the order of its two terms matters. The Bhanzu reference on uv differentiation works through more product cases, and the companion note on derivatives covers the standard results for $x^n$, $\sin x$, and $e^x$ that feed into every example above.
Why Does The Product Rule Work?
Strip away the symbols and the reason is a statement about change itself.
A product changes on two fronts. When you multiply two quantities that are both moving, the result moves because the first factor moved and because the second factor moved. The rule simply records both contributions and adds them.
Each term freezes one factor. In $u'v$, the factor $v$ is held still while $u$ changes; in $uv'$, the factor $u$ is held still while $v$ changes. Adding the two "one-at-a-time" changes recovers the full change.
The cross-term is too small to count. The simultaneous wiggle of both factors, the corner square $\Delta u,\Delta v$, is a product of two small numbers, so it shrinks faster than $\Delta x$ and disappears in the limit.
That is the intuition behind both the algebra and the geometry: the derivative of a product is a bookkeeping of "who moved," and exactly two things can move.
Who Discovered The Product Rule?
The product rule is one of the oldest results in calculus, and it arrived through the same picture we used above, a rectangle whose sides both grow.
Two more figures completed the story:
Gottfried Wilhelm Leibniz (1646–1716, Germany) stated the rule and gave calculus the $\frac{d}{dx}$ and $\int$ symbols that made it usable.
Augustin-Louis Cauchy (1789–1857, France) and later Karl Weierstrass (1815–1897, Germany) replaced the vanishing infinitesimal corner with the precise limit definition, turning Leibniz's picture into the airtight proof shown earlier.
Where Is The Product Rule Used In The Real World?
Any time two changing quantities are multiplied, their combined rate of change needs the product rule.
Physics and kinematics: power is force times velocity, $P = Fv$, and when both change over time the rule gives $P'(t) = F'v + Fv'$. The same structure governs momentum and rotational energy.
Electronics: the power dissipated in a component is $P = VI$ (voltage times current). In a circuit where both vary, $\frac{dP}{dt} = V'I + VI'$ tracks how quickly heat builds up.
Economics and business: revenue is price times quantity, $R = pq$. Marginal analysis of how revenue responds when both price and demand shift is a direct product-rule calculation.
Biology and growth: total biomass is population size times average mass per individual; when a colony both multiplies and its members grow, both effects enter through the two product-rule terms.
Engineering and signals: amplitude-modulated signals are a carrier wave multiplied by a slowly changing envelope, and their instantaneous rate of change is read off with the product rule.
The common thread is simple: whenever a real quantity is literally "this times that," and both parts move, the product rule is how the total responds.
What Are The Most Common Mistakes With The Product Rule?
These are the errors that show up most often in Bhanzu classrooms and across public help forums, verified against the documented misconceptions on MIT's calculus notes, CalcWorkshop, and Math Is Fun, plus the recurring "why isn't it just the product of the derivatives" questions on Reddit's r/learnmath and r/calculus and in Google's People Also Ask.
Multiplying the two derivatives together.
Where it slips in:
A learner writes $(uv)' = u'v'$, copying the clean split that works for sums.
Don't do this:
Do not multiply $u'$ and $v'$. As the counterexample proved, for $u = v = x$ this gives $1$ instead of the correct $2x$.
The correct way:
Use both terms: $(uv)' = u'v + uv'$. The derivative of a product is a sum, where each term differentiates one factor and keeps the other.
Dropping one of the two terms.
Where it slips in:
A student differentiates only the "harder" factor and forgets the term that differentiates the other, writing $(x^2\sin x)' = x^2\cos x$ and stopping.
Don't do this:
Do not leave the calculation with a single term. The product rule always produces two terms for two factors.
The correct way:
Write the skeleton $u'v + uv'$ before substituting, so both slots are visible: $(x^2\sin x)' = 2x\sin x + x^2\cos x$.
Swapping which factor got differentiated.
Where it slips in:
In the term $uv'$ a student accidentally differentiates $u$ instead of $v$, producing a scrambled mix such as $u'v + u'v$ or $uv' + uv'$.
Don't do this:
Do not lose track of which factor is being differentiated in each term. Each of the two terms must differentiate a different factor.
The correct way:
Label the parts first: $u$, $v$, then $u'$, $v'$. Term one is (changed $u$)(original $v$); term two is (original $u$)(changed $v$). Exactly one factor carries a prime in each term.
Practice Problems On The Product Rule
Differentiate each function with the product rule. Answers, each verified by re-differentiating, follow every problem.
$\dfrac{d}{dx}\left(x^{3}\cos x\right)$.
(Answer: $3x^{2}\cos x - x^{3}\sin x$.)$\dfrac{d}{dx}\left((x^{2}+1),e^{x}\right)$.
(Answer: $2x,e^{x} + (x^{2}+1)e^{x} = e^{x}(x+1)^{2}$.)$\dfrac{d}{dx}\left(x\ln x\right)$.
(Answer: $\ln x + 1$.)$\dfrac{d}{dx}\left(x^{2}e^{x}\right)$.
(Answer: $2x,e^{x} + x^{2}e^{x} = x,e^{x}(x+2)$.)$\dfrac{d}{dx}\left(x\sin x\cos x\right)$ (three factors).
(Answer: $\sin x\cos x + x\cos^{2}x - x\sin^{2}x$, which simplifies to $\tfrac{1}{2}\sin 2x + x\cos 2x$.)
Where Should You Go Next After The Product Rule?
The product rule is one node in the map of differentiation, and a few natural doors open from here.
Derivatives. Lock in the standard results, $x^n$, $\sin x$, $\cos x$, $e^x$, $\ln x$, that every product-rule problem feeds on.
UV differentiation. More worked product-rule cases, including harder mixes of polynomial, trigonometric, and exponential factors.
Integration of UV. The product rule run in reverse becomes integration by parts, the main technique for integrating a product.
If your child is building these calculus foundations, a live Bhanzu trainer teaches the product rule starting from the "why", the rectangle and the limit, rather than a formula to memorize, in the Bhanzu math classes.
Was this article helpful?
Your feedback helps us write better content
