Achievable logoAchievable logo
AP Calculus AB
Sign in
Sign up
Purchase
Textbook
Practice exams
Support
How it works
Exam catalog
Mountain with a flag at the peak
Textbook
Introduction
1. Limits
2. Derivative basics
2.1 Definition of the derivative
2.2 Tangent lines & slopes
2.3 Power rule
2.4 Product & quotient rules
2.5 Special derivatives
2.6 Differentiability & continuity
3. Advanced differentiation
4. Contextual uses
5. Analytical uses
6. Integration
7. Differential equations
8. Applications of integrals
9. Testing details tag
10. test
Wrapping up
Achievable logoAchievable logo
2.4 Product & quotient rules
Achievable AP Calculus AB
2. Derivative basics
Our AP Calculus AB course is currently in development and is a work-in-progress.

Product & quotient rules

9 min read
Font
Discuss
Share
Feedback

What you’ll learn:

  • How to differentiate products or quotients of two or more functions

Product rule

In the previous section, we found the derivative of

y=(x+1)(x3−2)

to be

y′=4x3+3x2−2

by fully expanding and then using the power rule on each individual term.

Another way to differentiate a product of multiple functions is by using the product rule.

The formula to differentiate the product of two functions f(x) and g(x) is:

Product rule:

dxd​[f(x)g(x)]=f(x)g′(x)+f′(x)g(x)

In other words, take the first function times the derivative of the second, then add the second function times the derivative of the first.

The mnemonic

“Left D right + right D left”

where “left” is the left (1st) function, “D” means “derivative,” and “right” is the right (2nd) function, may help you remember the product rule more easily.

If you’re curious, the proof of the product rule using the limit definition of the derivative can be found in the Wikipedia page.

Examples

Let’s redo the same problem using the product rule.

1. Find the derivative of

y=(x+1)(x3−2)

using the product rule.

Solution

(spoiler)

y is the product of the two functions:

f(x)g(x)​=x+1=x3−2​

It may be easier to keep track of the individual pieces first.

Function Expression
f(x) x+1
f′(x) 1
g(x) x3−2
g′(x) 3x2

Into the formula they go:

dxd​[f(x)g(x)]​=(x+1)(3x2)​f(x)g′(x)​+(1)(x3−2)​f′(x)g(x)​=3x3+3x2+x3−2=4x3+3x2−2​​

The results match!

2. Differentiate

h(t)=t​(t+1)

in two different ways:

i. With the product rule. ii. With the power rule (expanding into individual terms with powers first).

Solution

(spoiler)

Answer: h′(t)=23​t1/2+21​t−1/2​

i. With product rule

h(t) is the product of f(t) and g(t).

Function Expression
f(t) t1/2
f′(t) 21​t−1/2
g(t) t+1
g′(t) 1

Then applying the product rule:

h′(t)​=(t1/2)(1)​f(t)g′(t)​+(21​t−1/2)(t+1​f′(t)g(t)​)=t1/2+21​t1/2+21​t−1/2=23​t1/2+2t1/21​​​

ii. With power rule

Turn t​=t1/2 and distribute that to (t+1) with the exponent addition rule so that

h(t)=t3/2+t1/2

Then the power rule can be applied to each term and

h′(t)=23​t1/2+1/2t−1/2

Next, let’s find the derivative of a function that is the product of 3 functions.

3. Find the derivative of

f(x)=(x2+1)(2x+1)(3−x)

Solution

(spoiler)

Answer: f′(x)=−8x3+15x2+2x+5​

Although f(x) looks to be the product of 3 functions, we can group two of them to form a block such that f(x) is the product of two functions:

L(x)R(x)​=[(x2+1)(2x+1)]=(3−x)​

Keep in mind that the product rule is also applied when taking the derivative of L(x).

Function Expression
L(x) (x2+1)(2x+1)
L′(x) 6x2+2x+2
R(x) 3−x
R′(x) −1

Using the product rule on f(x):

f′(x)=(x2+1)(2x+1)(−1)+(6x2+2x+2)(3−x)

After expanding and simplifying,

f′(x)=−8x3+15x2+2x+5​

Alternatively, you could expand L(x)=(x2+1)(2x+1) so that it becomes a polynomial, then use the power rule to find L′(x) before combining it with R(x)=(3−x) using the product rule.

You could also fully expand the function to use only the power rule. Give these a try for extra practice, and to confirm the above answer!

Let’s do a word problem that involves derivatives.

4. A rectangle has length (2t−1) and height (5t+3), where t is the time in seconds and the dimensions are in meters. What is the rate of change of the area with respect to time?

Solution

(spoiler)

Answer: dtdA​=20t+1​

The key word “rate of change” should clue you into taking the derivative. But of what function?

Since we want to know how the area changes for an infinitesimally small change in time, or dtdA​, we first need to define an area function that takes in the input t and gives the area A. The area of a rectangle is its length × height, so

A(t)=(2t−1)(5t+3)

Using the product rule,

dtd​[A(t)]​=(2t−1)(5)+2(5t+3)=10t−5+10t+6=20t+1​​

The rate of change of the area at any time t can be found by inputting the value of t into that derivative function A′(t). The units for this rate of change will be in meters2/second since the rate is dtdA​, or the change in area over a change in time.

Quotient rule

When a function is written as a quotient of two functions, the quotient rule can be used. Here’s the formula to differentiate a quotient g(x)f(x)​:

Quotient rule:

dxd​[g(x)f(x)​]=[g(x)]2g(x)f′(x)−f(x)g′(x)​

This may look intimidating, but the steps are: take the bottom (function) times the derivative of the top, minus the top times the derivative of the bottom, all over the bottom squared.

A catchy way to remember the rule is the rhyme

“Lo-D-Hi minus Hi-D-Lo, all over the square of what’s below.”

“Lo” represents the lower/bottom function, “Hi” is the higher/top function, “D” means derivative again, and the “square of what’s below” means square the bottom function.

The proof of the quotient rule from the limit definition of the derivative can also be found in its Wikipedia page.

Examples

1. Find the derivative of

h(x)=x−1x+1​

Solution

(spoiler)

Answer: h′(x)=−(x−1)22​​

The top function is f(x)=(x+1) with derivative f′(x)=1.

The bottom function is g(x)=(x−1) with derivative g′(x)=1.

h′(x)​=(g(x))2(x−1)2​​(x−1)(1)​g(x)f′(x)​−(x+1)(1)​f(x)g′(x)​​=(x−1)2x−1−x−1​=(x−1)2−2​​​

2. Find the derivative of

y=x23x4+1​

in two different ways:

i. With the quotient rule. ii. No quotient rule.

Solution

(spoiler)

Answer: y′=6x−x32​​

i. Quotient rule

The top function is f(x)=3x4+1 and

f′(x)=12x3

The bottom function is g(x)=x2 and

g′(x)=2x

Applying the quotient rule,

y′=(x2)2(x2)(12x3)−(3x4+1)(2x)​

=x412x5−6x5−2x​

=x46x5−2x​

Which can be split into

x46x5​−x42x​

=6x−x32​​

ii. No quotient rule

Notice that the fraction can be split directly into

y=x23x4​+x21​

then simplified into

3x2+x−2

Then using the power rule,

y′=6x−2x−3

=6x−x32​

AP tip:

Look for opportunities to split fractions up to save time, if the quotient rule can be avoided. However, be careful not to split a fraction incorrectly; for example,

x+1x3​=xx3​+1x3​

To think about why this might be the case, substitute numbers like

2+18​

which does not equal

28​+18​

Let’s find the derivative of

f(x)=x+1x3​

using the quotient rule.

Solution

(spoiler)

f′(x)​=(x+1)2(x+1)(3x2)−(x3)(1)​=(x+1)23x3+3x2−x3​=(x+1)22x3+3x2​​​

Sidenote
Symbols as coefficients

If you see a function like

y=4πx2​

avoid wasting time with the quotient rule to find the derivative. It’s doable and will result in the same answer, but it’s faster to recognize that 4π​ is just a real-number coefficient in front of x2. So keep it in front using the constant multiple rule and apply the power rule on x2.

y′=4π​(2x)=2πx​

Sign up for free to take 7 quiz questions on this topic

All rights reserved ©2016 - 2026 Achievable, Inc.