← Skill tree MathScape MATH161

The Quotient Rule

Reference: Stewart §2.3  •  Chapter: 2  •  Section: 3

Navigation: Wiki Home > Skills > The Quotient Rule

Differentiating Fractions the Right Way

You've learned that derivatives work nicely with sums (the derivative of a sum is the sum of derivatives). But what about quotients? Unfortunately, $\left(\frac{f}{g}\right)' \neq \frac{f'}{g'}$: the derivative of a quotient is NOT the quotient of derivatives.

The Quotient Rule is the tool that handles fractions properly. It's slightly more complex than the Product Rule, but follows a memorable pattern: "low d-high minus high d-low, all over the square of what's below."

Prerequisite Map

This skillThe Quotient Rule

Quick Reference

Property Value
Concept Differentiation Formulas
Chapter 2.3
Difficulty Intermediate
Time ~20 minutes

Key Concepts

The Quotient Rule Formula

If $f$ and $g$ are both differentiable and $g(x) \neq 0$, then:

$$\boxed{\frac{d}{dx}\left[\frac{f(x)}{g(x)}\right] = \frac{g(x) \cdot f'(x) - f(x) \cdot g'(x)}{[g(x)]^2}}$$

In prime notation: $$\left(\frac{f}{g}\right)' = \frac{gf' - fg'}{g^2}$$

The Classic Mnemonic

"Low d-high minus high d-low, all over the square of what's below"

Where:

So: $\frac{\text{Low} \cdot \text{d-High} - \text{High} \cdot \text{d-Low}}{(\text{Low})^2}$

Visualizing the Formula

              g · f'  -  f · g'
Quotient' = ─────────────────────
                    g²

              ↑        ↑
           bottom   top      (denominator)·(derivative of numerator)
           stays    stays    MINUS
           same     same     (numerator)·(derivative of denominator)
                             ─────────────────────────────────────────
                                        (denominator)²

Key Difference from Product Rule

Product Rule Quotient Rule
$(fg)' = fg' + gf'$ $\left(\frac{f}{g}\right)' = \frac{gf' - fg'}{g^2}$
Addition of two terms Subtraction (order matters!)
No denominator Divide by $g^2$

Warning: The order of subtraction matters! It's $gf' - fg'$, not $fg' - gf'$.

Why the Quotient Rule Works

We can derive it from the Product Rule. Write $\frac{f}{g} = f \cdot g^{-1}$.

By the Product Rule: $$\frac{d}{dx}(f \cdot g^{-1}) = f \cdot (g^{-1})' + g^{-1} \cdot f'$$

Using the Chain Rule (preview): $(g^{-1})' = -g^{-2} \cdot g' = -\frac{g'}{g^2}$

$$= f \cdot \left(-\frac{g'}{g^2}\right) + \frac{f'}{g} = -\frac{fg'}{g^2} + \frac{f'}{g} = \frac{-fg' + gf'}{g^2} = \frac{gf' - fg'}{g^2}$$

When to Use (or Not Use) the Quotient Rule

Use the Quotient Rule when:

Don't use it when:

Example of simplifying first:

For $F(x) = \frac{3x^2 + 2\sqrt{x}}{x}$, don't use the Quotient Rule!

Instead, divide term by term: $$F(x) = 3x + 2x^{-1/2}$$

Then: $F'(x) = 3 - x^{-3/2}$

Much easier than applying the Quotient Rule to the original expression.

Practice Problems

Level 1 Simple Quotient

Find $\frac{d}{dx}\left(\frac{x}{x+1}\right)$.

Thought Process

Let $f = x$ (high) and $g = x + 1$ (low). Apply the formula: $\frac{\text{low} \cdot \text{d-high} - \text{high} \cdot \text{d-low}}{(\text{low})^2}$

Show Answer

Let $f = x$ and $g = x + 1$.

Then $f' = 1$ and $g' = 1$.

$$\frac{d}{dx}\left(\frac{x}{x+1}\right) = \frac{(x+1)(1) - (x)(1)}{(x+1)^2} = \frac{x + 1 - x}{(x+1)^2} = \frac{1}{(x+1)^2}$$

Level 2 Polynomial Quotient

Differentiate $y = \frac{x^2 - 1}{x^2 + 1}$.

Thought Process

Let $f = x^2 - 1$ and $g = x^2 + 1$. Find both derivatives, then apply the formula carefully. The algebra will simplify nicely.

Show Answer

Let $f = x^2 - 1$ and $g = x^2 + 1$.

Then $f' = 2x$ and $g' = 2x$.

$$y' = \frac{(x^2+1)(2x) - (x^2-1)(2x)}{(x^2+1)^2}$$

Factor out $2x$ from the numerator: $$= \frac{2x[(x^2+1) - (x^2-1)]}{(x^2+1)^2} = \frac{2x[x^2 + 1 - x^2 + 1]}{(x^2+1)^2} = \frac{2x \cdot 2}{(x^2+1)^2}$$

$$= \frac{4x}{(x^2+1)^2}$$

Level 3 Rational Function

Find $g'(t)$ if $g(t) = \frac{2t - 5}{3t + 7}$.

Thought Process

This is a linear-over-linear rational function. Apply the Quotient Rule with $f = 2t - 5$ and $g = 3t + 7$.

Show Answer

Let $f = 2t - 5$ and $h = 3t + 7$ (using $h$ to avoid confusion with the given function $g$).

Then $f' = 2$ and $h' = 3$.

$$g'(t) = \frac{(3t+7)(2) - (2t-5)(3)}{(3t+7)^2}$$

Expand the numerator: $$= \frac{6t + 14 - 6t + 15}{(3t+7)^2} = \frac{29}{(3t+7)^2}$$

Note: For any linear-over-linear function $\frac{at+b}{ct+d}$, the derivative simplifies to a constant over $(ct+d)^2$.

Level 4 Finding Tangent Lines

Find the equation of the tangent line to $y = \frac{x^2}{1 + x}$ at the point $(1, \frac{1}{2})$.

Thought Process
  1. Use the Quotient Rule to find $y'$
  2. Evaluate $y'(1)$ to get the slope
  3. Use point-slope form: $y - y_1 = m(x - x_1)$
Show Answer

Step 1: Find the derivative.

Let $f = x^2$ and $g = 1 + x$.

Then $f' = 2x$ and $g' = 1$.

$$y' = \frac{(1+x)(2x) - x^2(1)}{(1+x)^2} = \frac{2x + 2x^2 - x^2}{(1+x)^2} = \frac{x^2 + 2x}{(1+x)^2}$$

Step 2: Evaluate at $x = 1$.

$$y'(1) = \frac{1 + 2}{(1+1)^2} = \frac{3}{4}$$

Step 3: Write the tangent line equation.

Point: $(1, \frac{1}{2})$, Slope: $\frac{3}{4}$

$$y - \frac{1}{2} = \frac{3}{4}(x - 1)$$ $$y = \frac{3}{4}x - \frac{3}{4} + \frac{1}{2} = \frac{3}{4}x - \frac{1}{4}$$

Level 5 Proving the Power Rule for Negative Exponents

Use the Quotient Rule to prove that $\frac{d}{dx}(x^{-n}) = -nx^{-n-1}$ for positive integers $n$.

Thought Process

Rewrite $x^{-n}$ as $\frac{1}{x^n}$. Apply the Quotient Rule with $f = 1$ (a constant) and $g = x^n$. Simplify using exponent rules.

Show Answer

Rewrite: $x^{-n} = \frac{1}{x^n}$

Let $f = 1$ and $g = x^n$.

Then $f' = 0$ and $g' = nx^{n-1}$ (by the Power Rule for positive integers).

Apply the Quotient Rule: $$\frac{d}{dx}\left(\frac{1}{x^n}\right) = \frac{x^n \cdot 0 - 1 \cdot nx^{n-1}}{(x^n)^2}$$

$$= \frac{-nx^{n-1}}{x^{2n}} = -n \cdot x^{n-1-2n} = -nx^{-n-1}$$

This proves: $\frac{d}{dx}(x^{-n}) = -nx^{-n-1}$ ✓

This is exactly the Power Rule formula $\frac{d}{dx}(x^m) = mx^{m-1}$ with $m = -n$.

CCI-Style Conceptual Questions

Conceptual Order Matters

A student claims that since $fg' + gf' = gf' + fg'$ (by commutativity of addition), the order in the Quotient Rule shouldn't matter either. Why is this wrong?

Thought Process

The Product Rule uses addition, which is commutative. The Quotient Rule uses subtraction, which is NOT commutative. Consider what happens if you swap the order.

Show Answer

The Quotient Rule involves subtraction, not addition: $$\left(\frac{f}{g}\right)' = \frac{gf' - fg'}{g^2}$$

Subtraction is not commutative: $a - b \neq b - a$ (in fact, $a - b = -(b - a)$).

If you computed $\frac{fg' - gf'}{g^2}$ instead, you'd get the negative of the correct answer.

Example: For $y = \frac{x}{x+1}$:

  • Correct: $\frac{(x+1)(1) - x(1)}{(x+1)^2} = \frac{1}{(x+1)^2}$
  • Wrong order: $\frac{x(1) - (x+1)(1)}{(x+1)^2} = \frac{-1}{(x+1)^2}$ ✗
Conceptual Efficiency Check

For $f(x) = \frac{x^4 - 2x^2 + 1}{x^2}$, would you use the Quotient Rule or simplify first? Justify your choice, then find $f'(x)$.

Thought Process

Look at the denominator. It is a simple power of $x$. You can divide each term in the numerator by $x^2$. This will be faster than the Quotient Rule.

Show Answer

Simplify first! The denominator is just $x^2$, so divide term by term:

$$f(x) = \frac{x^4}{x^2} - \frac{2x^2}{x^2} + \frac{1}{x^2} = x^2 - 2 + x^{-2}$$

Now differentiate using basic rules: $$f'(x) = 2x - 0 - 2x^{-3} = 2x - \frac{2}{x^3}$$

Why this is better: The Quotient Rule would require expanding $(x^2)(4x^3 - 4x) - (x^4 - 2x^2 + 1)(2x)$ and simplifying, which is much more work for the same answer.

Rule of thumb: If the denominator is a single term (constant or power of $x$), divide first before reaching for the Quotient Rule.

Mastery Checklist

Mental Model

Think of division as "keeping a ratio":

When you have $\frac{f}{g}$, the rate of change depends on two competing effects:

The $g^2$ in the denominator reflects that the "base level" of the ratio matters. A small absolute change in a small ratio is relatively more significant.


Summary: All the Differentiation Rules

Rule Formula When to Use
Constant $\frac{d}{dx}(c) = 0$ Any constant
Power $\frac{d}{dx}(x^n) = nx^{n-1}$ Powers of $x$
Constant Multiple $(cf)' = cf'$ Constant times function
Sum $(f + g)' = f' + g'$ Adding functions
Difference $(f - g)' = f' - g'$ Subtracting functions
Product $(fg)' = fg' + gf'$ Multiplying functions
Quotient $\left(\frac{f}{g}\right)' = \frac{gf' - fg'}{g^2}$ Dividing functions

Previous Up Next
Product Rule Skills Index Trig Derivatives

Last updated: 2026-01-22