Quotient Rule: Formula, Proof & Examples

#Calculus
TL;DR
The quotient rule differentiates a ratio of two functions. For $f(x) = \dfrac{u(x)}{v(x)}$ with $v(x) \neq 0$, the derivative is $f'(x) = \dfrac{u'v - uv'}{v^2}$: the low (denominator) times the derivative of the high (numerator), minus the high times the derivative of the low, all over the low squared. The subtraction sign and the order of the two terms are what most students get wrong.
BT
Bhanzu TeamLast updated on September 23, 202612 min read

What Is The Quotient Rule?

The quotient rule is the method in calculus for finding the derivative of a function written as one function divided by another. If $f(x) = \dfrac{u(x)}{v(x)}$, where $u$ and $v$ are both differentiable and $v(x) \neq 0$, then:

$$f'(x) = \left(\frac{u}{v}\right)' = \frac{u'v - uv'}{v^2}$$

Read the numerator carefully, because the order is the whole rule:

  • $u'v$ is the denominator times the derivative of the numerator (low times d-high).

  • $uv'$ is the numerator times the derivative of the denominator (high times d-low).

  • The two terms are subtracted, low-d-high first, and the result is divided by $v^2$, the denominator squared.

The classroom mnemonic captures it exactly: "low d-high minus high d-low, over the bottom squared." Two things separate the quotient rule from the product rule: the middle sign is a minus (the product rule uses a plus), and the denominator is squared.

A quick example fixes the shape. For $f(x) = \dfrac{\sin x}{x}$, set $u = \sin x$ and $v = x$, so $u' = \cos x$ and $v' = 1$:

$$f'(x) = \frac{(\cos x)(x) - (\sin x)(1)}{x^2} = \frac{x\cos x - \sin x}{x^2}$$

That single computation is the entire technique. Everything below explains where the formula comes from, how to apply it cleanly, and the traps that cost marks.

How Do You Use The Quotient Rule Step By Step?

Applying the quotient rule is a fixed four-step routine. Doing the steps in the same order every time is what prevents the sign error.

  1. Name the parts. Call the top $u$ and the bottom $v$.

  2. Differentiate each part. Find $u'$ and $v'$ separately.

  3. Assemble the numerator. Write $u'v - uv'$, low-d-high first, then minus high-d-low.

  4. Divide by $v^2$ and simplify.

Example 1: Differentiate $f(x) = \dfrac{x^2}{x + 1}$.

Name the parts and differentiate them:

$$u = x^2, \quad u' = 2x, \qquad v = x + 1, \quad v' = 1$$

Assemble $u'v - uv'$ over $v^2$:

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

Expand and combine the numerator:

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

Final answer: $f'(x) = \dfrac{x(x + 2)}{(x + 1)^2}$.

Independent check. Split the original by polynomial division: $\dfrac{x^2}{x + 1} = x - 1 + \dfrac{1}{x + 1}$. Differentiating that gives $1 - \dfrac{1}{(x + 1)^2} = \dfrac{(x + 1)^2 - 1}{(x + 1)^2} = \dfrac{x^2 + 2x}{(x + 1)^2}$, the same result by a different route.

How Do You Derive The Quotient Rule?

The quotient rule is not an extra fact to memorise, it follows from rules you already have. Here are two derivations.

Derivation from the product rule and chain rule. Write the quotient as a product with a negative power:

$$f(x) = \frac{u}{v} = u \cdot v^{-1}$$

Apply the product rule, and differentiate $v^{-1}$ with the chain rule as $-v^{-2}v'$:

$$f'(x) = u' \cdot v^{-1} + u \cdot \left(-v^{-2}v'\right) = \frac{u'}{v} - \frac{uv'}{v^2}$$

Put both terms over the common denominator $v^2$:

$$f'(x) = \frac{u'v}{v^2} - \frac{uv'}{v^2} = \frac{u'v - uv'}{v^2}$$

That is the quotient rule, and it shows exactly where the minus sign is born: it comes from the $-v^{-2}$ produced by the chain rule on $v^{-1}$.

Derivation from the limit definition. Let $q(x) = \dfrac{u(x)}{v(x)}$. By the definition of the derivative:

$$q'(x) = \lim_{h \to 0} \frac{1}{h}\left[\frac{u(x + h)}{v(x + h)} - \frac{u(x)}{v(x)}\right]$$

Combine the two fractions over $v(x + h),v(x)$:

$$q'(x) = \lim_{h \to 0} \frac{u(x + h),v(x) - u(x),v(x + h)}{h,v(x + h),v(x)}$$

Add and subtract $u(x)v(x)$ in the numerator so it factors into two familiar difference quotients:

$$u(x + h)v(x) - u(x)v(x) - u(x)v(x + h) + u(x)v(x) = v(x)\big[u(x + h) - u(x)\big] - u(x)\big[v(x + h) - v(x)\big]$$

Dividing by $h$ and letting $h \to 0$, the two bracketed pieces become $u'(x)$ and $v'(x)$, while $v(x + h) \to v(x)$:

$$q'(x) = \frac{v(x),u'(x) - u(x),v'(x)}{[v(x)]^2} = \frac{u'v - uv'}{v^2}$$

Both roads reach the same formula, which is the reassurance that the rule is genuinely forced by the definitions, not a convention someone chose.

What Does The Quotient Rule Mean Geometrically?

Algebra and geometry describe the same object here. The value $f'(x)$ is the slope of the tangent line to the graph of $y = \dfrac{u}{v}$ at the point $x$. The quotient rule is simply the recipe for that slope when the height of the curve is a ratio.

The geometric reading also predicts the turning points. The tangent is horizontal wherever $f'(x) = 0$, and since the denominator $v^2$ is never zero, that happens exactly when the numerator vanishes: $u'v - uv' = 0$, i.e. $u'v = uv'$. For Example 1, the numerator $x^2 + 2x = x(x + 2)$ is zero at $x = 0$ and $x = -2$, so the graph of $\dfrac{x^2}{x + 1}$ has horizontal tangents at exactly those two inputs, which a quick plot confirms.

What Are Some Worked Quotient Rule Examples?

Three more examples, each verified a second way.

Example 2: Show that $(\tan x)' = \sec^2 x$.

Write $\tan x = \dfrac{\sin x}{\cos x}$, so $u = \sin x$, $u' = \cos x$, $v = \cos x$, $v' = -\sin x$:

$$(\tan x)' = \frac{(\cos x)(\cos x) - (\sin x)(-\sin x)}{\cos^2 x} = \frac{\cos^2 x + \sin^2 x}{\cos^2 x}$$

By the identity $\cos^2 x + \sin^2 x = 1$:

$$(\tan x)' = \frac{1}{\cos^2 x} = \sec^2 x$$

Final answer: $(\tan x)' = \sec^2 x$. This is the standard result listed in every table of trigonometric derivatives, and the quotient rule is where it comes from.

Example 3: Differentiate $g(x) = \dfrac{3x - 1}{2x + 5}$.

Here $u = 3x - 1$, $u' = 3$, $v = 2x + 5$, $v' = 2$:

$$g'(x) = \frac{(3)(2x + 5) - (3x - 1)(2)}{(2x + 5)^2} = \frac{6x + 15 - 6x + 2}{(2x + 5)^2} = \frac{17}{(2x + 5)^2}$$

Final answer: $g'(x) = \dfrac{17}{(2x + 5)^2}$. Notice the linear $x$-terms cancel, leaving a positive constant on top, so the slope is always positive and the function is increasing on each side of its asymptote, which matches the graph of a rising rational function.

Example 4: Differentiate $h(x) = \dfrac{e^x}{x^2}$.

With $u = e^x$, $u' = e^x$, $v = x^2$, $v' = 2x$:

$$h'(x) = \frac{(e^x)(x^2) - (e^x)(2x)}{(x^2)^2} = \frac{e^x x^2 - 2x e^x}{x^4}$$

Factor $x e^x$ from the numerator and cancel one $x$:

$$h'(x) = \frac{x e^x(x - 2)}{x^4} = \frac{e^x(x - 2)}{x^3}$$

Final answer: $h'(x) = \dfrac{e^x(x - 2)}{x^3}$. The numerator is zero at $x = 2$, so the curve has a horizontal tangent there, its single minimum for $x > 0$.

Which Standard Derivatives Come From The Quotient Rule?

Several results students memorise are really just the quotient rule applied to a ratio of two simpler functions. Working them once shows the pattern.

Table: Standard derivatives obtained by applying the quotient rule.

Function (as a ratio)

$u,\ v$

Derivative

$\tan x = \dfrac{\sin x}{\cos x}$

$\sin x,\ \cos x$

$\sec^2 x$

$\cot x = \dfrac{\cos x}{\sin x}$

$\cos x,\ \sin x$

$-\csc^2 x$

$\sec x = \dfrac{1}{\cos x}$

$1,\ \cos x$

$\sec x \tan x$

$\csc x = \dfrac{1}{\sin x}$

$1,\ \sin x$

$-\csc x \cot x$

Each row uses the same four steps. For $\cot x$, for instance, $u' v - u v' = (-\sin x)(\sin x) - (\cos x)(\cos x) = -(\sin^2 x + \cos^2 x) = -1$, over $\sin^2 x$, which gives $-\csc^2 x$. The full derivations of these live on the differentiation of trigonometric functions page.

Why Does The Quotient Rule Work?

The quotient rule is not arbitrary. Three ideas explain why it has the shape it has.

  • The minus sign is the chain rule showing through. Rewriting $\dfrac{u}{v}$ as $u \cdot v^{-1}$ and differentiating $v^{-1}$ produces $-v^{-2}v'$. That negative power is the origin of the subtraction, which is why the quotient rule subtracts where the product rule adds.

  • Squaring the denominator makes the units line up. A quotient $\dfrac{u}{v}$ already carries one factor of $v$ in the bottom. Differentiating a ratio brings in a second, so the denominator of the derivative is $v^2$. Anything less would not simplify back correctly.

  • The order encodes which change dominates. The term $u'v$ measures how fast the top is growing (scaled by the bottom), and $uv'$ measures how fast the bottom is growing (scaled by the top). A ratio rises when its top outpaces its bottom, so the derivative subtracts the second effect from the first.

Put together, the formula is the only expression that respects all three constraints, which is exactly what the two derivations above prove.

Who Discovered The Quotient Rule?

The quotient rule arrived with the very first published account of differential calculus, in a short and famously dense paper.

Isaac Newton (1643–1727, England) had developed his own version of calculus a decade earlier but published later, and the two men, and their supporters, spent years in a bitter priority dispute over who invented the subject. History credits both independently, but the symbols the world adopted, including the derivative notation that makes the quotient rule easy to write, are Leibniz's.

Where Is The Quotient Rule Used In The Real World?

Any quantity defined as one thing divided by another has a rate of change the quotient rule computes.

  • Physics of motion: average velocity is displacement over time, and average density is mass over volume, so tracking how these ratios change as their parts change is a quotient-rule calculation.

  • Engineering and fuel economy: miles per gallon, power-to-weight ratio, and signal-to-noise ratio are all quotients whose sensitivity to a change in the numerator or denominator is found this way.

  • Economics: average cost is total cost divided by quantity produced, and differentiating it explains when producing one more unit lowers or raises the average, a core idea in marginal analysis.

  • Chemistry and biology: concentration is amount of solute over volume of solution, and reaction rates often appear as ratios whose change over time drives the modelling.

  • Machine learning and statistics: many metrics, from ratios of probabilities to normalised scores, are quotients whose gradients feed directly into optimisation.

Wherever a "per" appears, per gallon, per unit, per litre, per second, a ratio is hiding, and the quotient rule is how its rate of change is measured.

What Are The Most Common Mistakes With The Quotient Rule?

These three errors account for most lost marks, verified against The Math Doctors' write-up on product-and-quotient confusion, Albert.io's AP Calculus review, and the questions students most often ask.

Reversing the order in the numerator (the sign error).

Where it slips in:

A student writes $uv' - u'v$ instead of $u'v - uv'$, differentiating the top and bottom correctly but subtracting them in the wrong order.

Don't do this:

Do not start the numerator with "high d-low." Reversing the two terms negates the whole answer, turning a correct derivative into its exact opposite.

The correct way:

Always start with low d-high: denominator times derivative of the numerator first, then minus numerator times derivative of the denominator. Recite "low d-high minus high d-low, over the bottom squared" and write the terms in that order every time.

Forgetting to square the denominator.

Where it slips in:

A student assembles the numerator correctly but writes $v$ on the bottom instead of $v^2$.

Don't do this:

Do not carry the original denominator straight down. The derivative of a ratio has the denominator squared, not repeated once.

The correct way:

Finish every quotient-rule answer with $v^2$ underneath. In Example 1 the bottom is $(x + 1)^2$, not $(x + 1)$.

Using the product-rule (plus) form.

Where it slips in:

A student who has just learned the product rule $(uv)' = u'v + uv'$ carries the plus sign over to the quotient and writes $u'v + uv'$.

Don't do this:

Do not add the two terms. The product rule adds; the quotient rule subtracts, because of the negative power the chain rule produces on $v^{-1}$.

The correct way:

Keep the two rules distinct: the product rule adds, the quotient rule subtracts over $v^2$. When unsure, rederive the quotient from $u \cdot v^{-1}$ and watch the minus sign appear.

When Should You Use The Quotient Rule Instead Of Rewriting?

The quotient rule always works, but it is not always the fastest tool. Before applying it, glance at the ratio and ask whether a rewrite is simpler.

  • Rewrite when the denominator is a single power of $x$. For $\dfrac{x^2 + 1}{x}$, splitting into $x + x^{-1}$ and differentiating term by term gives $1 - x^{-2}$ in one line, faster and less error-prone than the quotient rule (which returns the same answer, $\dfrac{x^2 - 1}{x^2}$).

  • Rewrite a constant over a function as a negative power. For $\dfrac{1}{v}$, treating it as $v^{-1}$ and using the chain rule is quicker than the full quotient rule, and it is exactly how the reciprocal rule is derived.

  • Use the quotient rule when both top and bottom are genuine functions of $x$ that will not split cleanly, such as $\dfrac{3x - 1}{2x + 5}$ or $\dfrac{e^x}{x^2}$. Here there is no simpler rewrite, so the quotient rule is the right and direct choice.

The habit to build: check for a one-line rewrite first, and reach for the quotient rule when the ratio genuinely resists one.

Practice Problems On The Quotient Rule

Differentiate each function using the quotient rule. Answers follow each line.

  1. $\dfrac{x}{x + 2}$.
    (Answer: $\dfrac{2}{(x + 2)^2}$.)

  2. $\dfrac{2x + 1}{x - 3}$.
    (Answer: $\dfrac{-7}{(x - 3)^2}$.)

  3. $\dfrac{x^2}{\cos x}$.
    (Answer: $\dfrac{2x\cos x + x^2 \sin x}{\cos^2 x}$.)

  4. $\cot x = \dfrac{\cos x}{\sin x}$.
    (Answer: $-\csc^2 x$.)

  5. $\dfrac{x + 1}{x^2}$.
    (Answer: $\dfrac{-x - 2}{x^3}$, equivalently $-\dfrac{x + 2}{x^3}$.)

  6. $\dfrac{e^x}{x + 1}$.
    (Answer: $\dfrac{x e^x}{(x + 1)^2}$.)

Where Should You Go Next After The Quotient Rule?

The quotient rule is one of three core differentiation rules, and each door below builds directly on it.

  1. Product rule (uv differentiation). The companion rule for $u \cdot v$; seeing product and quotient side by side makes the plus-versus-minus distinction permanent.

  2. Differentiation of trigonometric functions. Where the $\tan x$, $\cot x$, $\sec x$, and $\csc x$ derivatives from the table above are fully worked out.

  3. Integration. The reverse operation; once differentiation is solid, integration is the natural next stage of calculus.

If your child is building these calculus foundations, a live Bhanzu trainer teaches the quotient rule starting from the "why" (where the minus sign and the squared denominator come from) with a personal math tutor.

Book a Free Demo

Was this article helpful?

Your feedback helps us write better content

Frequently Asked Questions

What is the quotient rule in simple terms?
The quotient rule is the way to differentiate a fraction of two functions. For $\dfrac{u}{v}$, the derivative is $\dfrac{u'v - uv'}{v^2}$: multiply the bottom by the derivative of the top, subtract the top times the derivative of the bottom, and divide by the bottom squared.
Why is there a minus sign in the quotient rule?
Because rewriting $\dfrac{u}{v}$ as $u \cdot v^{-1}$ and applying the chain rule to $v^{-1}$ produces $-v^{-2}v'$. That negative power is where the subtraction comes from, which is also why the quotient rule subtracts while the product rule adds.
Do you square the denominator in the quotient rule?
Yes. The denominator of the answer is always $v^2$, the original bottom squared. Leaving it as $v$ is one of the most common errors, so always finish with the squared denominator.
What is the difference between the product rule and the quotient rule?
The product rule differentiates $u \cdot v$ and gives $u'v + uv'$ with a plus and no denominator. The quotient rule differentiates $\dfrac{u}{v}$ and gives $\dfrac{u'v - uv'}{v^2}$ with a minus and a squared denominator. Product means plus; quotient means minus over $v^2$.
Can I avoid the quotient rule by rewriting the function?
Sometimes. If the denominator is a single power of $x$, splitting the fraction into separate terms is faster, and a constant over a function can be handled as a negative power with the chain rule. When both the top and bottom are real functions that will not split, the quotient rule is the direct method.
What is the mnemonic for the quotient rule?
"Low d-high minus high d-low, over the bottom squared." Here "low" is the denominator, "high" is the numerator, and "d-high" and "d-low" are their derivatives. It spells out $\dfrac{v u' - u v'}{v^2}$, which is the quotient rule exactly.
✍️ Written By
BT
Bhanzu Team
Content Creator and Editor
Bhanzu’s editorial team, known as Team Bhanzu, is made up of experienced educators, curriculum experts, content strategists, and fact-checkers dedicated to making math simple and engaging for learners worldwide. Every article and resource is carefully researched, thoughtfully structured, and rigorously reviewed to ensure accuracy, clarity, and real-world relevance. We understand that building strong math foundations can raise questions for students and parents alike. That’s why Team Bhanzu focuses on delivering practical insights, concept-driven explanations, and trustworthy guidance-empowering learners to develop confidence, speed, and a lifelong love for mathematics.
Related Articles
Book a FREE Demo ClassBook Now →