Free for students · Ad-free · WCAG 2.1 AA Compliant · Accessibility

The Quotient Rule

Lesson ~10 min read

In simple terms: In simple terms, the quotient rule is a specific recipe for finding the rate of change (the derivative) of a function that is one function divided by another.

Why this matters

Imagine your friend Carlos starts a small business in Dallas selling custom-printed t-shirts. His total cost to produce x shirts is a function, C(x), and the total revenue he makes from selling them is R(x).

Now, what if he wants to find the average profit per shirt? That would be the total profit, P(x) = R(x) - C(x), divided by the number of shirts, x. So, the average profit is A(x) = P(x) / x.

Here's the calculus question: How quickly is his average profit per shirt changing as he produces more? To find that rate of change, A'(x), you need to find the derivative of a function divided by another function. You can't just take the derivative of the top and divide by the derivative of the bottom. You need a special tool.

That tool is the Quotient Rule, and we're about to master it together.

Concept overview

flowchart TD
    A[Start: Find derivative of h(x) = f(x) / g(x)] --> B{Identify 'High' and 'Low'};
    B --> C[High: f(x) <br> Low: g(x)];
    C --> D{Find Derivatives};
    D --> E[D-High: f'(x) <br> D-Low: g'(x)];
    E --> F{Assemble Numerator};
    F --> G[Low * D-High - High * D-Low <br> g(x)f'(x) - f(x)g'(x)];
    E --> H{Assemble Denominator};
    H --> I[Low * Low <br> [g(x)]^2];
    G --> J[Combine and Simplify];
    I --> J;
    J --> K[End: h'(x)];
This diagram shows a flowchart for applying the Quotient Rule. It starts by identifying the 'High' (numerator) and 'Low' (denominator) functions, finding their respective derivatives, and then assembling them into the final formula: (Low * D-High - High * D-Low) / (Low^2).

Core explanation

Welcome! Let's dive into one of the most important tools in your differentiation toolbox: the Quotient Rule.

Just like we had a special method for products (the Product Rule), we have one for quotients. A quotient is just a fancy word for a fraction or a division. So, anytime you see a function that looks like h(x) = f(x) / g(x), you should immediately think, "Quotient Rule!"

The Formula

Let's get the formula on the table first. It can look a little intimidating, but I promise we'll make sense of it.

If you have a function h(x) that is the quotient of two functions, f(x) and g(x): h(x) = f(x) / g(x)

Then its derivative, h'(x), is: h'(x) = (g(x)f'(x) - f(x)g'(x)) / [g(x)]^2

I know, I know. It looks like a mess of letters and primes. But there's a rhythm to it.

A Way to Remember It

Here’s a little mnemonic that has helped calculus students for decades. Let's call the top function "High" (like the high part of a fraction) and the bottom function "Low." And let's call the derivative "D."

So, f(x) is "High" and g(x) is "Low." f'(x) is "D-High" and g'(x) is "D-Low."

Now, let's re-read the rule with these names:

Low * D-High - High * D-Low ----------------------------- Low * Low

Or, as a little song: "Low D-High minus High D-Low, over the square of what's below."

Say it out loud a few times. Write it down. This little jingle is your key to remembering the formula under pressure during a test.

Why the Order Matters SO Much

But the Quotient Rule has subtraction in the numerator. And order matters immensely in subtraction! 5 - 2 is not the same as 2 - 5.

You must start with the "Low" function, g(x), times the derivative of the "High" one, f'(x). If you mix up the two terms in the numerator, your answer will have the wrong sign. The AP exam knows this is a common mistake and will absolutely have answer choices that correspond to this exact error.

Think of it like a recipe for baking a cake. You can't just throw the ingredients in a bowl in any random order. You have to follow the steps precisely. For the Quotient Rule, the first step of the numerator is always "Low D-High."

Breaking Down the Pieces

Let's make this concrete. Suppose you have the function: h(x) = (x^2) / (sin(x))

Before you even start applying the formula, your first step should always be to identify your pieces.

  1. 1
    Identify the "High" function
    The numerator. f(x) = x^2
  2. 2
    Identify the "Low" function
    The denominator. g(x) = sin(x)
  3. 3
    Find their derivatives
    f'(x) = 2x (using the Power Rule) g'(x) = cos(x) (a basic trig derivative)

Now you have all four building blocks: f(x), g(x), f'(x), and g'(x). You are no longer doing calculus; you are just doing algebra. You're plugging these four pieces into the recipe.

h'(x) = (g(x)f'(x) - f(x)g'(x)) / [g(x)]^2

Substitute your pieces in:

h'(x) = ( (sin(x))(2x) - (x^2)(cos(x)) ) / [sin(x)]^2

And that's it! You've successfully applied the Quotient Rule. From here, it's just about simplifying the algebra if the problem asks for it.

h'(x) = (2x * sin(x) - x^2 * cos(x)) / sin^2(x)

The calculus is the one single step of applying the rule. The rest is careful bookkeeping and algebra. Don't let the complex final answer scare you. Focus on getting the setup right, and you're 90% of the way there.

Worked examples

Let's walk through a couple of examples together. The key is to be neat, organized, and methodical.

Example 1

A Rational Function

Problem: Find the derivative of y = (3x - 5) / (x^2 + 1).

Step 1: Identify your "High" and "Low" functions. This is always your first move. Don't try to do it in your head. Write it down.

  • High function: f(x) = 3x - 5
  • Low function: g(x) = x^2 + 1

Step 2: Find their derivatives. Use the power rule for both.

  • f'(x) = 3
  • g'(x) = 2x

Step 3: Assemble the Quotient Rule formula. Remember the song: "Low D-High minus High D-Low, over the square of what's below."

y' = (g(x)f'(x) - f(x)g'(x)) / [g(x)]^2

Step 4: Substitute your pieces carefully. This is where you need to be precise. Use parentheses to avoid errors.

y' = ( (x^2 + 1)(3) - (3x - 5)(2x) ) / (x^2 + 1)^2

The calculus part is done! The rest is algebra. On a free-response question, this might be enough for full credit (unless they ask you to simplify). But for a multiple-choice question, you'll need to clean it up.

Step 5: Simplify the numerator. Distribute everything in the numerator. Be careful with that minus sign!

y' = ( (3x^2 + 3) - (6x^2 - 10x) ) / (x^2 + 1)^2

y' = ( 3x^2 + 3 - 6x^2 + 10x ) / (x^2 + 1)^2

Combine like terms in the numerator:

y' = (-3x^2 + 10x + 3) / (x^2 + 1)^2

This is our final, simplified answer.


Example 2

A Function with a Radical

Problem: Find the derivative of h(t) = sqrt(t) / (t^2 - 4).

Step 1: Identify "High" and "Low". First, rewrite the square root with a fractional exponent. It makes the derivative easier. sqrt(t) = t^(1/2).

  • High function: f(t) = t^(1/2)
  • Low function: g(t) = t^2 - 4

Step 2: Find their derivatives.

  • f'(t) = (1/2)t^(-1/2)
  • g'(t) = 2t

Step 3: Assemble the formula. h'(t) = (g(t)f'(t) - f(t)g'(t)) / [g(t)]^2

Step 4: Substitute. Again, be generous with parentheses.

h'(t) = ( (t^2 - 4) * (1/2)t^(-1/2) - (t^(1/2)) * (2t) ) / (t^2 - 4)^2

Step 5: Simplify. This looks messy, but we can handle it. Let's clean up the numerator.

First term: (1/2)t^(-1/2) * (t^2 - 4) = (t^2 - 4) / (2 * sqrt(t)) Second term: t^(1/2) * 2t = 2t^(3/2)

So the numerator is: (t^2 - 4) / (2 * sqrt(t)) - 2t^(3/2)

This is a complex fraction. To simplify, we can multiply the numerator and denominator by 2 * sqrt(t) to clear the fraction within the fraction. This is a common algebra trick you'll need.

h'(t) = [ (t^2 - 4) - (2t^(3/2)) * (2 * sqrt(t)) ] / [ (t^2 - 4)^2 * (2 * sqrt(t)) ]

Since sqrt(t) = t^(1/2), then 2t^(3/2) * 2t^(1/2) = 4t^2.

h'(t) = (t^2 - 4 - 4t^2) / (2 * sqrt(t) * (t^2 - 4)^2)

h'(t) = (-3t^2 - 4) / (2 * sqrt(t) * (t^2 - 4)^2)

The algebra can be tricky, but the calculus process is the same every time. Identify your pieces, plug them into the formula, and then carefully simplify.

Try it yourself

Ready to try on your own? Don't worry about simplifying all the way. Just focus on the setup.

Problem 1: Find the derivative of f(x) = e^x / (x^3 - 2x).

  • Hint: Identify your "High" (e^x) and "Low" (x^3 - 2x). Remember that the derivative of e^x is just e^x. Apply the "Low D-High minus High D-Low" pattern.

Problem 2: A company in Seattle finds its profit (in thousands of dollars) from selling n items is P(n) = 10n, and its cost is C(n) = n^2 + 50. The efficiency E(n) is defined as the ratio of profit to cost. Find the rate of change of efficiency, E'(n).

  • Hint: First, write the function for efficiency, E(n) = P(n) / C(n). This will be a quotient. Then, apply the quotient rule to find E'(n).