Guides · 8 min read

Every Derivative Rule, in the Order You Actually Learn Them

Most derivative tables dump twenty rules on you at once, sorted alphabetically or by function type, which is exactly the wrong order for learning them. The rules were not discovered in that order and they do not build on each other that way. This guide walks through them in the sequence that makes each one feel like the natural next step, and it explains not just how each rule works but when you reach for it.

Once you can look at an expression and name which rule applies, differentiation stops being a memory test and becomes a decision process. That is the real skill a first course is testing.

The Foundation: Constant, Power, and Constant Multiple

Everything starts with three rules so basic they are easy to undervalue. The derivative of a constant is zero, because a constant does not change and the derivative measures change. The power rule handles any term of the form x to a power: bring the exponent down front and subtract one from it. The constant multiple rule says a number multiplied onto a function just rides along, so the 5 in 5x cubed stays put while you differentiate x cubed.

Together these three already cover every polynomial. The power rule in particular is the workhorse of the entire subject, and it quietly extends far beyond whole-number exponents. Roots are fractional powers, and reciprocals are negative powers, so once you rewrite the square root of x as x to the one-half and 1/x as x to the negative one, the same single rule differentiates them without any new memorization.

ddxxn=nxn1\frac{d}{dx}\, x^n = n x^{n-1}

The power rule, the most-used derivative rule in calculus.

The Sum and Difference Rule: Break It Into Pieces

The sum rule is the reason polynomials are painless: the derivative of a sum is the sum of the derivatives. You can chop a long expression into individual terms, differentiate each on its own, and add the results back. Subtraction works the same way. This linearity is what lets you attack a five-term polynomial one term at a time instead of as a single frightening whole.

It is worth pausing on why this rule feels obvious while the product rule, coming next, does not. Addition of functions does not create any interaction between the pieces, so their rates of change simply add. Multiplication does create interaction, and that is precisely where the naive guess breaks down.

The Product Rule: Why You Cannot Just Multiply Derivatives

The single most common early mistake is assuming the derivative of a product is the product of the derivatives. It is not, and it helps to see why. If two quantities are both changing, the product grows for two reasons at once: the first factor changes while the second holds it, and the second factor changes while the first holds it. The product rule adds both contributions, which is why it has two terms, not one.

In words: derivative of the first times the second, plus the first times derivative of the second. A useful test for when to use it is simply whether you see two functions multiplied together where each depends on x, such as x squared times sine of x. If a plain number is one of the factors, you do not need the product rule; the constant multiple rule is enough.

(fg)=fg+fg(fg)' = f'g + f g'

The product rule: change from each factor is added, not multiplied.

The Quotient Rule: Division With a Sign to Watch

Division of two functions gets its own rule, and it is the one students most often write down backward. The pattern is: bottom times derivative of the top, minus top times derivative of the bottom, all divided by the bottom squared. The order matters because of that minus sign; swapping the two terms flips the sign of your whole answer.

A common shortcut is to avoid the quotient rule when you can. If the denominator is a single power of x, rewrite the whole thing with a negative exponent and use the power rule instead, which is faster and less error-prone. Save the quotient rule for genuine ratios like sine over cosine, where neither piece simplifies away.

The Chain Rule: The One That Unlocks Everything Else

The chain rule is the last of the core rules and by far the most powerful, because almost every interesting function is a composition, a function tucked inside another function. Think of sine of (x squared), or the square root of (1 + x cubed). To differentiate these you work from the outside in: take the derivative of the outer function, leaving the inside alone, then multiply by the derivative of the inside.

The phrase that keeps students on track is derivative of the outside, times derivative of the inside. The multiplication is the whole point: a change in x ripples through the inner function first and then through the outer one, so the two rates multiply. Once the chain rule clicks, the derivatives of exponentials, logarithms, and the inverse trig functions all become routine, because each is just a known outer derivative combined with whatever is inside.

Recognizing when to use the chain rule is the skill that separates fluent students from stuck ones. The tell is always the same: is there a function inside another function? If yes, the chain rule applies, and it often applies on top of the product or quotient rule in the same problem.

ddxf(g(x))=f(g(x))g(x)\frac{d}{dx}\, f(g(x)) = f'(g(x)) \cdot g'(x)

The chain rule: differentiate the outer function, then multiply by the inner derivative.

Putting the Rules in Order of Attack

With all six rules in hand, the practical question is which to apply first when several could apply. The reliable strategy is to work from the outermost structure inward. Ask what the last operation is that you would perform if you plugged in a number. If the outermost operation is a sum, split with the sum rule. If it is a product or a quotient, apply that rule and let the chain rule handle any composed pieces inside. If it is a composition, start with the chain rule.

This outside-in approach turns even intimidating expressions into a short sequence of familiar steps. The rules do not compete; they nest. Practicing until you can name the outermost operation at a glance is the fastest route to speed and accuracy on exams.

Frequently asked questions

In what order should I learn the derivative rules?

Constant and power rules first, then the constant multiple and sum rules, then the product and quotient rules, and finally the chain rule. Each builds naturally on the ones before it.

How do I know whether to use the product rule or the chain rule?

Use the product rule when two functions are multiplied. Use the chain rule when one function is nested inside another. Many problems need both, applied from the outside in.

Can I avoid the quotient rule?

Often yes. If the denominator is a single power of x, rewrite it with a negative exponent and use the power rule. Reserve the quotient rule for genuine ratios of two functions.

Why is the derivative of a product not just the product of derivatives?

Because both factors change at once, and the product grows from each change separately. The product rule adds those two contributions, which is why it has two terms.

Keep going