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 formula for finding the rate of change (the derivative) of a function that is structured like a fraction, with one function divided by another.

Why this matters

Imagine your friend Carlos starts a small business selling custom-designed t-shirts for his high school's teams in Dallas. His total cost to produce the shirts includes a fixed setup fee for the screen printer plus a cost for each shirt. The average cost per shirt is the total cost divided by the number of shirts he makes.

Now, what if he wants to know how that average cost changes if he decides to print one more shirt? Is the average cost going up or down? This question is about the rate of change of a quotient (Total Cost / Number of Shirts). You can't just find the rate of change of the cost and divide it by the rate of change of the number of shirts. You need a special tool for this.

That tool is the Quotient Rule. It’s our reliable recipe for finding the derivative when one function is divided by another. We'll break down the formula, make it easy to remember, and apply it to a few examples.

Concept overview

flowchart TD
    A[Start: Have a function h(x) = f(x) / g(x)] --> B{Is it a quotient?};
    B -- Yes --> C[Identify High: f(x) and Low: g(x)];
    B -- No --> J[Use another rule, e.g., Power or Product Rule];
    C --> D[Find D-High: f'(x) and D-Low: g'(x)];
    D --> E[Recall Mnemonic: Low D-High - High D-Low];
    E --> F[Plug into formula: [g(x)f'(x) - f(x)g'(x)] / [g(x)]^2];
    F --> G[Simplify the numerator];
    G --> H[Check for common factors to cancel];
    H --> I[End: Final Derivative];
This diagram is a flowchart that shows the step-by-step process for applying the Quotient Rule. It begins by identifying if a function is a quotient, then moves to finding the high and low parts and their derivatives, plugging them into the formula, and finally simplifying the result.

Core explanation

Alright, let's get right to it. The Quotient Rule is one of those formulas in calculus that you simply need to commit to memory. But I'm going to give you a way to remember it that makes it much less intimidating.

The Quotient Rule Formula

If you have a function h(x) that is made up of one function f(x) divided by another function g(x), like this:

h(x) = f(x) / g(x)

Then its derivative, h'(x), is found using this formula:

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

I know, that looks like a lot to remember. So let's translate it into something more memorable.

"Low D-High Minus High D-Low"

Think of the numerator as the "High" function and the denominator as the "Low" function.

  • High
    = f(x)
  • Low
    = g(x)
  • D-High
    (the derivative of the high) = f'(x)
  • D-Low
    (the derivative of the low) = g'(x)

Now, listen to this little phrase. Say it out loud. "Low D-High, minus High D-Low, over the square of what's below."

Let's match that to the formula:

  • "Low D-High"
    g(x) * f'(x)
  • "minus High D-Low"
    - f(x) * g'(x)
  • "over the square of what's below"
    / [g(x)]^2

Put it all together, and you get the Quotient Rule! This mnemonic is your best friend. It helps you get the pieces in the right place and, crucially, in the right order.

Why Can't I Just Differentiate the Top and Bottom?

This is the single most common point of confusion, and it's a great question. Let's see what happens if we try that.

Consider the function h(x) = x^5 / x^2. We know from algebra that this simplifies to h(x) = x^3. Using the Power Rule, the derivative is clearly h'(x) = 3x^2. This is the correct answer.

Now, let's try the "shortcut" that doesn't work.

  • The derivative of the top (x^5) is 5x^4.
  • The derivative of the bottom (x^2) is 2x.

If we just divided those, we'd get 5x^4 / 2x = (5/2)x^3. That is absolutely not the same as our correct answer, 3x^2. This is why we need the specific recipe of the Quotient Rule. It correctly accounts for how the numerator and denominator interact as x changes.

The Order Matters!

With the Product Rule, the + sign means the order of the two terms doesn't matter. Here, we have a minus sign in the numerator. That changes everything.

g(x)f'(x) - f(x)g'(x) is NOT the same as f(x)g'(x) - g(x)f'(x).

This is where the "Low D-High" mnemonic saves the day. It forces you to start with the "Low" function (g(x)) times the derivative of the "High" (f'(x)). If you mix this order up, your answer will have the wrong sign. The AP exam will absolutely have an answer choice waiting for you if you make this mistake.

Think of it like building a sandwich. You have bread, turkey, and cheese. The order you stack them matters. The Quotient Rule is the recipe that says the g(x)f'(x) term must go first, just like you might always put the cheese on top of the turkey. Stick to the recipe, and you'll get a perfect result every time.

Worked examples

Let's put the rule into practice. The key is to be organized. I always recommend writing out the four key components (High, Low, D-High, D-Low) before you plug them into the formula.

Example 1

A Rational Function

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

Step 1: Identify your "High" and "Low" functions. This is the most important first step. Don't try to do it in your head.

  • High (f(x)): 4x + 1
  • Low (g(x)): x^2 - 3

Step 2: Find the derivatives of the High and Low functions.

  • D-High (f'(x)): The derivative of 4x + 1 is just 4.
  • D-Low (g'(x)): The derivative of x^2 - 3 is 2x.

Step 3: Plug these four pieces into the Quotient Rule formula. Remember: "Low D-High minus High D-Low, over the square of what's below."

h'(x) = [ (x^2 - 3) * (4) - (4x + 1) * (2x) ] / [ (x^2 - 3) ]^2

Step 4: Simplify the numerator. This is where algebra skills are critical. Be very careful with distribution and your negative signs.

  • Distribute the 4: 4x^2 - 12
  • Distribute the 2x: 8x^2 + 2x
  • Now combine them in the numerator: (4x^2 - 12) - (8x^2 + 2x)
  • This is where most students slip up: You must distribute that negative sign to both terms in the second parenthesis.
  • 4x^2 - 12 - 8x^2 - 2x
  • Combine like terms: -4x^2 - 2x - 12

Final Answer: h'(x) = (-4x^2 - 2x - 12) / (x^2 - 3)^2

Pro-Tip: In most cases, especially on free-response questions, you should not expand the denominator. Leaving it as (x^2 - 3)^2 is perfectly fine and often preferred.


Example 2

A Function with a Trigonometric Component

Problem: Find the derivative of y = sin(x) / x^3.

Step 1: Identify High and Low.

  • High (f(x)): sin(x)
  • Low (g(x)): x^3

Step 2: Find their derivatives.

  • D-High (f'(x)): cos(x)
  • D-Low (g'(x)): 3x^2

Step 3: Plug into the formula. y' = [ (x^3) * (cos(x)) - (sin(x)) * (3x^2) ] / [ (x^3) ]^2

Step 4: Simplify. The numerator looks pretty clean, but we can reorder for clarity. The denominator can be simplified.

  • Numerator: x^3 * cos(x) - 3x^2 * sin(x)
  • Denominator: (x^3)^2 = x^6

So we have: y' = (x^3 * cos(x) - 3x^2 * sin(x)) / x^6

Final Answer: y' = (x * cos(x) - 3 * sin(x)) / x^4

This final simplification step is what separates a good answer from a great one. Always check if you can factor and cancel after applying the rule.

Try it yourself

Time to get your hands dirty. Take your time, be methodical, and write out your steps.

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

Hint: Be very careful with the derivative of the denominator. What's the derivative of 2 - 3x? Don't forget the negative sign!

Problem 2: Find the derivative of g(t) = e^t / (t^2 + 1).

Hint: Remember that the derivative of e^t is just e^t. Identify your four pieces, plug them in, and see if you can simplify by factoring anything out of the numerator.