Unit 2.9 – The Quotient Rule

AP® Calculus AB & BC | Differentiating Quotients of Functions

Core Concept: After mastering the Product Rule in Topic 2.8, you might wonder: what about division? When you have one function divided by another, you need the Quotient Rule! This rule is essential for rational functions (ratios of polynomials), trig ratios like tan x = sin x/cos x, and countless other quotient situations. The Quotient Rule has a reputation for being "tricky" because of the subtraction and the order of terms, but with the right memory trick, you'll master it quickly! This topic is heavily tested on the AP® exam, especially in FRQ problems involving rates and optimization.

⚠️ CRITICAL: THE MOST COMMON MISTAKE ⚠️

The derivative of a quotient is NOT the quotient of derivatives!

\[ \frac{d}{dx}\left[\frac{f(x)}{g(x)}\right] \neq \frac{f'(x)}{g'(x)} \quad \text{(WRONG!)} \]

Example showing why this is wrong:

Let \(f(x) = x^2\) and \(g(x) = x^3\)

  • Correct approach: \(f(x) \cdot g(x) = x^5\), so \(\frac{d}{dx}[x^5] = 5x^4\) ✓
  • Wrong approach: \(f'(x) \cdot g'(x) = 2x \cdot 3x^2 = 6x^3\) ✗ (different answer!)

You MUST use the Quotient Rule!

⚡ The Quotient Rule Formula

THE QUOTIENT RULE

If \(u\) and \(v\) are differentiable functions of \(x\) (with \(v \neq 0\)), then:

\[ \frac{d}{dx}\left[\frac{u}{v}\right] = \frac{v \cdot \frac{du}{dx} - u \cdot \frac{dv}{dx}}{v^2} \]

Alternative Notation (Prime Notation):

\[ \left(\frac{u}{v}\right)' = \frac{vu' - uv'}{v^2} \]

Or using f and g:

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

Compact Form:

\[ \left(\frac{u}{v}\right)' = \frac{vu' - uv'}{v^2} \]

🎯 THE MOST FAMOUS CALCULUS CHANT!

"Low d High minus High d Low,
All over Low Low"

Translation:

  • "Low" = Bottom function (denominator)
  • "High" = Top function (numerator)
  • "d High" = derivative of top
  • "d Low" = derivative of bottom
  • "Low Low" = (bottom)²

Step-by-Step:

  1. Low d High: Bottom times derivative of top
  2. Minus: Subtract (critical!)
  3. High d Low: Top times derivative of bottom
  4. All over Low Low: Divide everything by (bottom)²

📝 Other Memory Tricks:

Method 1: "Bottom Top Minus Top Bottom"

(Bottom)(Derivative of Top) - (Top)(Derivative of Bottom), all over (Bottom)²

Method 2: Think of Product Rule Connection

Quotient Rule looks like Product Rule (uv' + vu') but with a MINUS sign and v² in denominator

Method 3: The Rhyme

"Denominator, derivative of numerator,
Minus numerator, derivative of denominator,
All over denominator squared!"

⚠️ CRITICAL: ORDER MATTERS! ⚠️

The derivative of a quotient is NOT the quotient of derivatives!

\[ \frac{d}{dx}\left[\frac{f(x)}{g(x)}\right] \neq \frac{f'(x)}{g'(x)} \quad \text{(WRONG!)} \]

Also, the ORDER of subtraction matters!

It's \(vu' - uv'\), NOT \(uv' - vu'\)

Start with the bottom function first (Low d High), then subtract!

🎯 When to Use the Quotient Rule

Use the Quotient Rule when:

  • Clear division of functions: \(\frac{x^2}{\sin x}\), \(\frac{e^x}{x^3}\), \(\frac{\ln x}{x+1}\)
  • Can't simplify first: Numerator and denominator don't reduce
  • Trig quotients: \(\tan x = \frac{\sin x}{\cos x}\), \(\sec x = \frac{1}{\cos x}\)
  • Rational functions: Ratios of polynomials where numerator degree ≥ denominator degree

DON'T use the Quotient Rule when:

  • Can rewrite as Product Rule: \(\frac{x^2}{x^3} = x^{-1}\) → Power Rule
  • Simple division: \(\frac{3x^2}{x} = 3x\) → Simplify first
  • Constant in denominator: \(\frac{x^2 + 1}{5} = \frac{1}{5}(x^2+1)\) → Constant Multiple Rule
  • Negative exponent works: \(\frac{1}{x^2} = x^{-2}\) → Power Rule

💡 Pro Decision: You can ALWAYS use Quotient Rule for \(\frac{u}{v}\), but sometimes using Product Rule with \(u \cdot v^{-1}\) is easier! Compare:

  • Quotient Rule: More steps, but systematic for complex fractions
  • Product Rule + Chain Rule: Rewrite \(\frac{f}{g} = f \cdot g^{-1}\), then use Product Rule

For the AP® exam, use whichever method you're most comfortable with—both give the same answer!

📖 Comprehensive Worked Examples

Example 1: Basic Rational Function

Problem: Find \(\frac{d}{dx}\left[\frac{x^2}{x+1}\right]\)

Solution:

  1. Identify the functions:
    • Top (High): \(u = x^2\)
    • Bottom (Low): \(v = x + 1\)
  2. Find derivatives:
    • \(u' = 2x\)
    • \(v' = 1\)
  3. Apply "Low d High minus High d Low over Low Low":
    \[ = \frac{(x+1)(2x) - (x^2)(1)}{(x+1)^2} \]
  4. Expand and simplify:
    • Numerator: \(2x^2 + 2x - x^2 = x^2 + 2x\)
    • Factor: \(x(x + 2)\)
  5. Final answer:
    \[ \frac{x^2 + 2x}{(x+1)^2} \quad \text{or} \quad \frac{x(x+2)}{(x+1)^2} \]

Answer: \(\frac{x^2 + 2x}{(x+1)^2}\) or \(\frac{x(x+2)}{(x+1)^2}\)

Example 2: Trig Over Polynomial

Problem: Differentiate \(f(x) = \frac{\sin x}{x^2}\)

Solution:

  1. Identify: \(u = \sin x\), \(v = x^2\)
  2. Derivatives: \(u' = \cos x\), \(v' = 2x\)
  3. Quotient Rule:
    \[ f'(x) = \frac{x^2 \cos x - \sin x \cdot 2x}{(x^2)^2} \]
  4. Simplify denominator and factor numerator:
    \[ f'(x) = \frac{x^2 \cos x - 2x \sin x}{x^4} \]

    Factor x from numerator:

    \[ f'(x) = \frac{x(x \cos x - 2 \sin x)}{x^4} = \frac{x \cos x - 2 \sin x}{x^3} \]

Answer: \(\frac{x \cos x - 2 \sin x}{x^3}\)

Example 3: Exponential Over Polynomial

Problem: Find \(g'(x)\) for \(g(x) = \frac{e^x}{x^3 + 1}\)

Solution:

  1. Identify: \(u = e^x\), \(v = x^3 + 1\)
  2. Derivatives: \(u' = e^x\), \(v' = 3x^2\)
  3. Apply formula:
    \[ g'(x) = \frac{(x^3+1) \cdot e^x - e^x \cdot 3x^2}{(x^3+1)^2} \]
  4. Factor \(e^x\) from numerator:
    \[ g'(x) = \frac{e^x[(x^3+1) - 3x^2]}{(x^3+1)^2} \]
  5. Simplify numerator inside brackets:
    \[ g'(x) = \frac{e^x(x^3 - 3x^2 + 1)}{(x^3+1)^2} \]

Answer: \(\frac{e^x(x^3 - 3x^2 + 1)}{(x^3+1)^2}\)

Example 4: Natural Log Over Trig

Problem: Differentiate \(h(x) = \frac{\ln x}{\cos x}\)

Solution:

  1. Identify: \(u = \ln x\), \(v = \cos x\)
  2. Derivatives: \(u' = \frac{1}{x}\), \(v' = -\sin x\)
  3. Quotient Rule (watch the signs!):
    \[ h'(x) = \frac{\cos x \cdot \frac{1}{x} - \ln x \cdot (-\sin x)}{\cos^2 x} \]
  4. Simplify (double negative becomes positive):
    \[ h'(x) = \frac{\frac{\cos x}{x} + \ln x \sin x}{\cos^2 x} \]
  5. Optional - multiply by \(\frac{x}{x}\) to clear nested fraction:
    \[ h'(x) = \frac{\cos x + x \ln x \sin x}{x \cos^2 x} \]

Answer: \(\frac{\cos x + x \ln x \sin x}{x \cos^2 x}\)

Example 5: When Quotient Rule is Unnecessary

Problem: Find \(\frac{d}{dx}\left[\frac{x^3}{x}\right]\)

Option 1: Quotient Rule (harder way)

  1. \(u = x^3\), \(v = x\); \(u' = 3x^2\), \(v' = 1\)
  2. \(\frac{x \cdot 3x^2 - x^3 \cdot 1}{x^2} = \frac{3x^3 - x^3}{x^2} = \frac{2x^3}{x^2} = 2x\)

Option 2: Simplify First (smart way!)

  1. Simplify: \(\frac{x^3}{x} = x^2\)
  2. Differentiate: \(\frac{d}{dx}[x^2] = 2x\)

Answer: \(2x\) (same result, but simplifying first is much easier!)

Lesson: Always check if you can simplify before using Quotient Rule!

Example 6: Deriving Derivative of Tangent

Problem: Prove that \(\frac{d}{dx}[\tan x] = \sec^2 x\) using Quotient Rule

Solution:

  1. Rewrite tangent as quotient: \(\tan x = \frac{\sin x}{\cos x}\)
  2. Identify: \(u = \sin x\), \(v = \cos x\)
  3. Derivatives: \(u' = \cos x\), \(v' = -\sin x\)
  4. Apply Quotient Rule:
    \[ \frac{d}{dx}[\tan x] = \frac{\cos x \cdot \cos x - \sin x \cdot (-\sin x)}{\cos^2 x} \]
  5. Simplify (double negative):
    \[ = \frac{\cos^2 x + \sin^2 x}{\cos^2 x} \]
  6. Use Pythagorean identity \(\sin^2 x + \cos^2 x = 1\):
    \[ = \frac{1}{\cos^2 x} = \sec^2 x \quad \checkmark \]

Result: \(\frac{d}{dx}[\tan x] = \sec^2 x\) (proven!)

📐 Proof of the Quotient Rule

Theorem: If \(u\) and \(v\) are differentiable (with \(v \neq 0\)), then \(\left(\frac{u}{v}\right)' = \frac{vu' - uv'}{v^2}\)

Proof Method 1: Using Product Rule

  1. Rewrite as product:
    \[ \frac{u}{v} = u \cdot v^{-1} \]
  2. Apply Product Rule:
    \[ \frac{d}{dx}[u \cdot v^{-1}] = u' \cdot v^{-1} + u \cdot \frac{d}{dx}[v^{-1}] \]
  3. Find \(\frac{d}{dx}[v^{-1}]\) using Chain Rule:
    \[ \frac{d}{dx}[v^{-1}] = -1 \cdot v^{-2} \cdot v' = -\frac{v'}{v^2} \]
  4. Substitute back:
    \[ = u' \cdot \frac{1}{v} + u \cdot \left(-\frac{v'}{v^2}\right) = \frac{u'}{v} - \frac{uv'}{v^2} \]
  5. Common denominator:
    \[ = \frac{u'v}{v^2} - \frac{uv'}{v^2} = \frac{vu' - uv'}{v^2} \quad \checkmark \]

📝 Note: The Quotient Rule can also be proved using the limit definition (similar to Product Rule proof) or using implicit differentiation. All methods give the same result!

⚖️ Product Rule vs. Quotient Rule

Aspect Product Rule Quotient Rule
For \(u \cdot v\) (multiplication) \(\frac{u}{v}\) (division)
Formula \(uv' + vu'\) \(\frac{vu' - uv'}{v^2}\)
Operation Addition (+) Subtraction (−)
Denominator None (stays in numerator) \(v^2\) (denominator squared)
Order Matters No (addition commutes) YES! (must be \(vu' - uv'\))
Mnemonic "First d Second + Second d First" "Low d High − High d Low / Low Low"

💡 Tips, Tricks & Strategies

✅ Essential Tips

  • Memorize the chant: "Low d High minus High d Low, all over Low Low" until it's automatic
  • Write u and v clearly: Label top and bottom before applying formula
  • ORDER MATTERS: Start with bottom (Low) first, then subtract
  • Don't forget v²: Denominator is ALWAYS the bottom function squared
  • Simplify when possible: Factor common terms, cancel carefully
  • Check if you can avoid it: Sometimes simplifying first or using Product Rule is easier
  • Watch for sign errors: Double negatives in subtraction are common mistakes

🎯 Step-by-Step Workflow

Universal Process for Quotient Rule:

  1. CHECK: Can you simplify or rewrite first? (If yes, do it!)
  2. IDENTIFY: Label numerator (u/High) and denominator (v/Low)
  3. DIFFERENTIATE: Find u' and v' separately
  4. WRITE FORMULA: \(\frac{vu' - uv'}{v^2}\) (or use your chant)
  5. SUBSTITUTE: Plug in u, v, u', v' carefully
  6. EXPAND: Multiply out terms in numerator
  7. SIMPLIFY: Combine like terms, factor if possible
  8. CHECK: Did you forget the minus sign? Is denominator v²?

🔥 Memory Devices

Mnemonic #1: The Classic Chant

"Lo d-Hi minus Hi d-Lo,
Square the bottom and away we go!"

Mnemonic #2: Visual Pattern

\(\left(\frac{\boxed{u}}{\boxed{v}}\right)' = \frac{\boxed{v}u' - \boxed{u}v'}{v^2}\)

The boxed functions swap positions in numerator!

Mnemonic #3: Compare to Product Rule

Quotient Rule looks like Product Rule with THREE changes:

  1. Plus (\(+\)) becomes minus (\(-\))
  2. Order switches (\(vu'\) comes first, not \(uv'\))
  3. Divide by \(v^2\)

❌ Common Mistakes to Avoid

  • Mistake 1: Quotient of derivatives → \(\left(\frac{u}{v}\right)' \neq \frac{u'}{v'}\) ❌
  • Mistake 2: Wrong order → \(\frac{uv' - vu'}{v^2}\) ❌ (must be \(vu'\) first!)
  • Mistake 3: Forgetting v² → \(\frac{vu' - uv'}{v}\) ❌ (denominator must be squared!)
  • Mistake 4: Using plus instead of minus → \(\frac{vu' + uv'}{v^2}\) ❌
  • Mistake 5: Sign errors with negatives → Watch \(-(-)\) becomes \(+\)
  • Mistake 6: Not simplifying → \(\frac{x^3}{x}\) can be \(x^2\) before differentiating
  • Mistake 7: Canceling incorrectly → Can't cancel terms across subtraction in numerator
  • Mistake 8: Forgetting domain → Result undefined where \(v = 0\)

📝 Practice Problems

Find the derivative of each function:

  1. \(f(x) = \frac{x^2 + 1}{x - 2}\)
  2. \(g(x) = \frac{\cos x}{x}\)
  3. \(h(x) = \frac{e^x}{x^2 + 1}\)
  4. \(k(x) = \frac{x}{\sin x}\)
  5. \(f(x) = \frac{3x^2}{x}\) (hint: simplify first!)
  6. Prove \(\frac{d}{dx}[\cot x] = -\csc^2 x\) using Quotient Rule

Answers:

  1. \(f'(x) = \frac{(x-2)(2x) - (x^2+1)(1)}{(x-2)^2} = \frac{2x^2 - 4x - x^2 - 1}{(x-2)^2} = \frac{x^2 - 4x - 1}{(x-2)^2}\)
  2. \(g'(x) = \frac{x(-\sin x) - \cos x(1)}{x^2} = \frac{-x\sin x - \cos x}{x^2} = -\frac{x\sin x + \cos x}{x^2}\)
  3. \(h'(x) = \frac{(x^2+1)e^x - e^x(2x)}{(x^2+1)^2} = \frac{e^x(x^2+1-2x)}{(x^2+1)^2} = \frac{e^x(x^2-2x+1)}{(x^2+1)^2}\)
  4. \(k'(x) = \frac{\sin x(1) - x(\cos x)}{\sin^2 x} = \frac{\sin x - x\cos x}{\sin^2 x}\)
  5. Simplify: \(f(x) = 3x\), so \(f'(x) = 3\)
  6. \(\cot x = \frac{\cos x}{\sin x}\); \(\frac{d}{dx}[\cot x] = \frac{\sin x(-\sin x) - \cos x(\cos x)}{\sin^2 x} = \frac{-\sin^2 x - \cos^2 x}{\sin^2 x} = \frac{-1}{\sin^2 x} = -\csc^2 x\) ✓

✏️ AP® Exam Success Tips

What the AP® Exam Expects:

  • Show setup on FRQ: Write "using Quotient Rule" and identify u, v
  • Simplify completely: Factor numerator, simplify algebraically
  • State domain restrictions: Note where denominator = 0
  • Know when to skip it: If you can simplify first, do it
  • Watch signs carefully: Double check the minus sign
  • Trig derivatives: Know how to derive tan, cot, sec, csc using Quotient Rule
  • Mixed with Chain Rule: Topic 2.10 combines both rules

Common FRQ Formats:

  1. "Find f'(x) for the function..." (direct application)
  2. "Find the slope of the tangent line at x = a" (evaluate derivative)
  3. "At what rate is the ratio changing..." (related rates with quotients)
  4. "Show that the derivative of [trig function] equals..." (prove derivatives)
  5. "Find values of x where f'(x) = 0" (critical points of rational functions)
  6. "Determine where f is increasing/decreasing" (analyze sign of f')

💡 Pro Tip: On the AP® exam, Quotient Rule problems often involve:

  • Rational functions: Optimization of ratios
  • Trig identities: Deriving sec, csc, tan, cot derivatives
  • Related rates: Problems involving ratios changing over time
  • Optimization: Maximizing/minimizing efficiency ratios

⚡ Ultimate Quick Reference

THE QUOTIENT RULE - MEMORIZE NOW!

\[ \left(\frac{u}{v}\right)' = \frac{vu' - uv'}{v^2} \]

"Low d High minus High d Low,
All over Low Low"

DO Use Quotient Rule DON'T Use (Simplify First)
\(\frac{x^2}{\sin x}\) \(\frac{x^3}{x} = x^2\)
\(\frac{e^x}{x^2+1}\) \(\frac{2x^2}{2} = x^2\)
\(\frac{\ln x}{\cos x}\) \(\frac{1}{x^2} = x^{-2}\) (Power Rule)

⚠️ ORDER MATTERS: \(vu' - uv'\) NOT \(uv' - vu'\) ⚠️

⚠️ ALWAYS SQUARE THE DENOMINATOR: \(v^2\) NOT \(v\) ⚠️

🔗 Why This Topic Matters

Topic 2.9 connects to:

  • Topic 2.7: Deriving trig function derivatives (tan, cot, sec, csc)
  • Topic 2.10: Chain Rule combined with Quotient Rule for complex quotients
  • Unit 3: Optimization of ratios and efficiency problems
  • Unit 4: Related rates with quotients (e.g., concentration = amount/volume)
  • Unit 5: Analyzing rational functions for curve sketching
  • Unit 6: Integration techniques (partial fractions)
  • Real-world: Rates, ratios, efficiency, density, concentration all involve quotients

Remember: The Quotient Rule states that \(\left(\frac{u}{v}\right)' = \frac{vu' - uv'}{v^2}\), memorized as "Low d High minus High d Low, all over Low Low." The ORDER of subtraction matters—start with bottom function times derivative of top, THEN subtract top times derivative of bottom. The denominator is ALWAYS the bottom function squared. This is NOT the quotient of derivatives (\(\frac{u'}{v'}\) is wrong!). Use Quotient Rule when functions can't be simplified, but ALWAYS check if simplifying first is easier. Common applications include deriving trig function derivatives (tan, sec, cot, csc), related rates with ratios, and optimization of efficiency. Master the chant and you'll never forget it—this rule is essential for AP® success! 🎯✨