The Quotient Rule
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];
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) is5x^4. - The derivative of the bottom (
x^2) is2x.
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.
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 of4x + 1is just4. - D-Low (
g'(x)): The derivative ofx^2 - 3is2x.
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.
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.
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.
h'(x) = [ g(x) * f'(x) - f(x) * g'(x) ] / [ g(x) ]^2
- FUN-3.B: Calculate derivatives of products and quotients of differentiable functions.
- FUN-3.B.2
- Derivatives of quotients of differentiable functions can be found using the quotient rule.
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];
Read what Saavi narrates
(gentle, warm music fades in and out)
Hi everyone, it's Saavi from Shrutam. Let's talk about a powerful tool in your calculus toolkit: the Quotient Rule.
Imagine your friend Carlos starts a business selling custom t-shirts in Dallas. The average cost per shirt is the total cost divided by the number of shirts. If he wants to know how that average cost changes when he prints one more shirt, he's asking about the rate of change of a quotient. You can't just find the rate of change of the cost and divide. You need a special tool. That's the Quotient Rule.
Simply put, when you have a function that's a fraction... one function divided by another... you need a specific formula to find its derivative. You can't just differentiate the top and bottom separately.
Let's walk through an example. Find the derivative of the function `h(x)` equals `(4x + 1)` divided by `(x squared - 3)`.
First, let's use our mnemonic: "Low D-High, minus High D-Low, over the square of what's below."
Our "High" function is the numerator, `4x + 1`. Its derivative, "D-High," is just 4.
Our "Low" function is the denominator, `x squared - 3`. Its derivative, "D-Low," is `2x`.
Now, we plug these into the formula.
Low D-High... that's `(x squared - 3)` times `4`.
Minus High D-Low... that's `(4x + 1)` times `2x`.
All over the square of what's below... so, `(x squared - 3)` squared.
Now for the algebra. The numerator becomes `(4x squared - 12)` minus `(8x squared + 2x)`.
And here is the most common mistake students make: they forget to distribute that negative sign to BOTH terms. It's not just minus `8x squared`, it's also minus `2x`.
So when we combine like terms in the numerator, we get `negative 4x squared, minus 2x, minus 12`. The denominator stays `(x squared - 3)` squared. And that's our derivative.
The biggest takeaway is to be methodical. Identify your pieces, say the mnemonic out loud, and be careful with your algebra. The Quotient Rule might seem intimidating, but it's just a recipe. Follow the steps, and you'll get it right every time. You've got this.
(music fades in)
This "shortcut" ignores how the two functions interact and, as we showed earlier, gives a completely different and incorrect answer.
Use the full Quotient Rule formula: `[g(x)f'(x) - f(x)g'(x)] / [g(x)]^2`.
Subtraction is not commutative. Reversing the order will make your entire numerator have the opposite sign, leading to the wrong derivative.
Chant the mnemonic: "**Low D-High** minus High D-Low..." The `Low * D-High` term must come first.
The formula explicitly requires the square of the denominator. It's a critical part of the rule's derivation.
The last part of the mnemonic is "...over the **square of what's below**." Never forget to write `[g(x)]^2`.
A simple algebra error can derail a perfectly executed calculus step. Forgetting to distribute a negative sign is the most frequent culprit.
When you have `A - (B + C)`, rewrite it as `A - B - C`. Use parentheses carefully and distribute the negative to every term in the second part of the numerator.
It's not "wrong"—it will give the right answer—but it's a huge waste of time and energy. It's like using a sledgehammer to hang a picture frame.
Recognize that dividing by a constant is the same as multiplying by its reciprocal. Rewrite the function as `h(x) = (1/2)(x^2 + 4x) = (1/2)x^2 + 2x`. Now you can just use the Power Rule.