← back to calculus

Derivative Rules

Active Calculus (CC BY-SA) · activecalculus.org

Five rules make differentiation mechanical: power, product, quotient, chain, and implicit. Once you know them, you never need the limit definition again for standard functions.

x u y g: du/dx f: dy/du dy/dx = dy/du · du/dx

Power rule

d/dx [xⁿ] = n xⁿ⁻¹. This handles every polynomial. Combined with linearity (derivative of a sum is the sum of derivatives, constants pull out), it covers all polynomials instantly.

Scheme

Product rule

d/dx [f(x) g(x)] = f'(x) g(x) + f(x) g'(x). The derivative of a product is not the product of the derivatives. Both functions contribute to the rate of change.

Scheme

Chain rule

d/dx [f(g(x))] = f'(g(x)) · g'(x). The derivative of a composition is the product of the derivatives, each evaluated at the right point. This is the most used rule in practice.

Scheme

Quotient rule

d/dx [f(x)/g(x)] = [f'(x) g(x) - f(x) g'(x)] / [g(x)]². Low d-high minus high d-low, over the square of what's below.

Scheme

Implicit differentiation

When y is defined implicitly by an equation like x² + y² = 1, differentiate both sides with respect to x, treating y as a function of x. Then solve for dy/dx. For the circle: 2x + 2y(dy/dx) = 0, so dy/dx = -x/y.

Scheme

Notation reference

Rule Formula When to use
Powernxⁿ⁻¹x raised to a constant
Productf'g + fg'Two functions multiplied
Quotient(f'g - fg')/g²One function over another
Chainf'(g(x)) · g'(x)Function of a function
Implicitdifferentiate both sides, solve for dy/dxy defined by an equation
Neighbors