IB Maths AA HL Topic 5 — Calculus Paper 1 & 2 ~7 min read

Quotient Rule

For two functions divided rather than multiplied — like (2x − 5)/(x² + 1) or e2x/(x + 1) — the rule is (u/v)′ = (vu′ − uv′)/v². Same 2×2 layout as product rule, but with a critical minus sign in the numerator (so order matters), and a denominator squared at the end.

📘 What you need to know

The rule and the diagonal trap

Quotient rule (formula booklet) dydx  =  v · dudx  −  u · dvdxv²
Same 2×2 layout — but watch the MINUS sign and the order u v u′ v′ first pair (+) v · u′ second pair (−) u · v′ dy/dx = (v · u′ − u · v′) / v²
Same diagonal pairs as product rule, but the v·u′ pair comes FIRST (positive) and u·v′ comes second (with a minus). And don’t forget v² underneath.
Memory device: “low d-high minus high d-low, over the square of what’s below” — read top to bottom: low (denominator) times derivative of high (numerator), minus high times derivative of low, all over the bottom squared. The order of the two terms matters because of the minus.

When NOT to use quotient rule

Constant numerator
2(3x − 7)² = 2(3x − 7)⁻²
use chain rule on the negative power instead — much faster
Constant denominator
(3x − 7)²2 = ½ (3x − 7)²
treat 1/2 as a factor and use chain rule

Quotient rule still works in both cases — it just adds extra terms that always cancel. Save effort: rewrite as a power or a constant multiple first.

🧭 Recipe — apply the quotient rule

  1. Identify u (numerator) and v (denominator). Lay them out 2×2 with u′ and v′ underneath.
  2. Differentiate each: find u′ and v′ (chain rule inside if needed).
  3. Apply the formula: numerator = vu′ − uv′ (positive term first); denominator = v².
  4. Simplify the numerator — expand and collect like terms; factor common terms across v² if it helps.
  5. Verify or evaluate — substitute the given x-value if a numeric gradient is asked for.

Worked examples

WE 1

Algebraic over algebraic — basic quotient rule

Find the derivative of y = (2x − 5)/(x² + 1).

Identify u and v u = 2x − 5 v = x² + 1 u′ = 2 v′ = 2x Apply (vu′ − uv′)/v² numerator = (x² + 1)·2 − (2x − 5)·2x = 2x² + 2 − 4x² + 10x = −2x² + 10x + 2 denominator = (x² + 1)² Final form (factor −2 from numerator) dy/dx = −2(x² − 5x − 1) / (x² + 1)² dy/dx = −2(x² − 5x − 1)/(x² + 1)² careful with −(2x − 5)·2x = −4x² + 10x — distribute the minus AND the 2x
WE 2

Trig over algebra — simplify the result

Find the derivative of y = sin(x)/x².

Identify u and v u = sin x v = x² u′ = cos x v′ = 2x Apply (vu′ − uv′)/v² dy/dx = [x² · cos x − sin x · 2x] / (x²)² = [x² cos x − 2x sin x] / x⁴ Factor x from the numerator and divide out = x(x cos x − 2 sin x) / x⁴ = (x cos x − 2 sin x) / x³ dy/dx = (x cos x − 2 sin x)/x³ v² = (x²)² = x⁴; cancelling one x with the numerator’s common factor leaves x³
WE 3

Exponential over linear — factor cleanly

Find the derivative of y = e2x/(x + 1). Give your answer in factored form.

Identify u and v u = e^(2x) v = x + 1 u′ = 2e^(2x) v′ = 1 Apply (vu′ − uv′)/v² dy/dx = [(x + 1)·2e^(2x) − e^(2x)·1] / (x + 1)² Factor e^(2x) from the numerator = e^(2x) [2(x + 1) − 1] / (x + 1)² = e^(2x) (2x + 2 − 1) / (x + 1)² = e^(2x) (2x + 1) / (x + 1)² dy/dx = e^(2x)(2x + 1)/(x + 1)² e^(2x) is never zero, so always factor it out — the (2x + 1) factor reveals where dy/dx = 0
WE 4

Show that d/dx(tan x) = sec²x

Use the quotient rule to show that the derivative of tan(x) = sin(x)/cos(x) is sec²(x).

Set u = sin x, v = cos x u′ = cos x v′ = −sin x Apply (vu′ − uv′)/v² dy/dx = [cos x · cos x − sin x · (−sin x)] / cos²x = [cos²x + sin²x] / cos²x Apply identity cos²x + sin²x = 1 = 1 / cos²x = sec²x ∎ d/dx [tan x] = sec²x ✓ double minus: −sin x · (−sin x) = +sin²x — the secret of the cos²+sin² identity appearing
WE 5

Gradient at a specific point — exact answer

Find the gradient of the curve y = (3x + 2)/(x² − 4) at the point where x = 1.

Identify u and v u = 3x + 2 v = x² − 4 u′ = 3 v′ = 2x Apply (vu′ − uv′)/v² numerator = (x² − 4)·3 − (3x + 2)·2x = 3x² − 12 − 6x² − 4x = −3x² − 4x − 12 denominator = (x² − 4)² Substitute x = 1 numerator: −3 − 4 − 12 = −19 denominator: (1 − 4)² = 9 m = −19/9 Gradient at x = 1 is −19/9 substituting BEFORE simplifying often saves time when only a numeric gradient is asked
WE 6

Real-world: drug concentration peaks

The concentration (in mg/L) of a drug in the bloodstream t hours after injection is modelled by C(t) = 5t/(t² + 4), t ≥ 0.

(a) Find dC/dt. (b) Find the time at which the concentration is at a maximum. (c) Find the maximum concentration.

(a) Apply quotient rule u = 5t v = t² + 4 u′ = 5 v′ = 2t dC/dt = [(t² + 4)·5 − 5t·2t] / (t² + 4)² = [5t² + 20 − 10t²] / (t² + 4)² = (20 − 5t²) / (t² + 4)² = 5(4 − t²) / (t² + 4)² (b) Maximum where dC/dt = 0 5(4 − t²) = 0 → t² = 4 → t = 2 (t ≥ 0) (c) Substitute t = 2 into C(t) C(2) = 5·2/(4 + 4) = 10/8 = 5/4 (a) 5(4 − t²)/(t² + 4)²; (b) t = 2 hours; (c) C_max = 5/4 mg/L denominator (t² + 4)² is always positive; sign of dC/dt comes from numerator (4 − t²) — confirms max

💡 Top tips

⚠ Common mistakes

Up next: Higher Order Derivatives. Differentiating again gives the second derivative f″(x) = d²y/dx² — used to test whether stationary points are local maxima or minima, and to determine concavity. Keep going and you get f‴, f⁽⁴⁾, f⁽⁵⁾… for many functions, the higher derivatives follow a predictable pattern.

Need help with Calculus?

Get 1-on-1 help from an IB examiner who knows exactly what Paper 1 & 2 are looking for.

Book Free Session →