The power rule alone is not enough when functions are multiplied or divided. You cannot simply differentiate each piece separately — you need special rules for products and quotients.

🎯 In this section you will learn

📌 The Product Rule

When you have a product of two functions, the derivative is NOT simply the product of the derivatives. Instead:

$$ \frac{d}{dx}[f(x) \cdot g(x)] = f'(x) \cdot g(x) + f(x) \cdot g'(x) $$
💡 Memory Trick
"First times derivative of the second, plus second times derivative of the first."
Example 1Product Rule Basics

Find $\frac{d}{dx}(x^2 \cdot \sin x)$.

Identify $f$ and $g$
$f(x) = x^2$, $g(x) = \sin x$
Find $f'$ and $g'$
$f'(x) = 2x$, $g'(x) = \cos x$
Apply Product Rule
$f'g + fg' = (2x)(\sin x) + (x^2)(\cos x)$
Simplify
$\frac{d}{dx}(x^2 \sin x) = 2x\sin x + x^2\cos x$
Example 2Product Rule with $e^x$

Find $\frac{d}{dx}(x e^x)$.

Example 3Product Rule with Three Factors

For products of three functions: $(fgh)' = f'gh + fg'h + fgh'$

📌 The Quotient Rule

When you have a fraction (quotient) of two functions:

$$ \frac{d}{dx}\left[\frac{f(x)}{g(x)}\right] = \frac{f'(x)g(x) - f(x)g'(x)}{[g(x)]^2} $$
💡 Memory Trick
"Low d-high minus high d-low, over low squared."
(low = denominator, high = numerator)
Example 4Quotient Rule Basics

Find $\frac{d}{dx}\left(\frac{x^2}{\sin x}\right)$.

Identify $f$ and $g$
$f(x) = x^2$, $g(x) = \sin x$
Find $f'$ and $g'$
$f'(x) = 2x$, $g'(x) = \cos x$
Apply Quotient Rule
$\frac{f'g - fg'}{g^2} = \frac{(2x)(\sin x) - (x^2)(\cos x)}{\sin^2 x}$
Simplify
$\frac{d}{dx}\left(\frac{x^2}{\sin x}\right) = \frac{2x\sin x - x^2\cos x}{\sin^2 x}$
Example 5Quotient Rule with $e^x$

Find $\frac{d}{dx}\left(\frac{e^x}{x}\right)$.

Example 6When Not to Use Quotient Rule

Sometimes rewriting can be easier! For $\frac{d}{dx}\left(\frac{x^2 + 1}{x}\right)$, you could use quotient rule OR rewrite:

💡 Tip
Before using the quotient rule, check if you can rewrite the expression as a sum of simpler terms.
⚠️ Common Mistakes
🔍 Key Takeaways
← Back to Module Page