Derivative formulas answer two questions: how to differentiate common functions, and which rule to apply when products, quotients, or composite functions appear. The most useful move is not to expand first but to recognize the structure first, then choose the formula and compute. Memorize the basic functions, differentiate sums and differences term by term, use the Product Rule for products, the Quotient Rule for quotients, and the Chain Rule for functions inside functions.

The Formulas And Their Symbols

First, the derivatives of the most common basic functions. These are the building blocks for every later rule.

Function Derivative Formula Reminder
Constant cc (c)=0(c)' = 0 Constants do not change with xx
Power Function xnx^n (xn)=nxn1(x^n)' = nx^{n-1} Applies to constant exponents nn
Exponential Function exe^x (ex)=ex(e^x)' = e^x Form remains unchanged
Logarithmic Function lnx\ln x (lnx)=1x(\ln x)' = \frac{1}{x} Requires x>0x > 0
Sine Function sinx\sin x (sinx)=cosx(\sin x)' = \cos x Most common among trigonometric functions
Cosine Function cosx\cos x (cosx)=sinx(\cos x)' = -\sin x Easy to miss the negative sign

Where basic formulas tell you how to differentiate a single function, the rules below tell you what to do when the structure grows.

Structure Derivative Formula Key Reminder
Constant Multiple cf(x)c f(x) (cf(x))=cf(x)(c f(x))' = c f'(x) Constants factor out directly
Sum/Difference f(x)±g(x)f(x) \pm g(x) (f(x)±g(x))=f(x)±g(x)(f(x) \pm g(x))' = f'(x) \pm g'(x) Differentiate each term separately
Product f(x)g(x)f(x)g(x) (f(x)g(x))=f(x)g(x)+f(x)g(x)(f(x)g(x))' = f'(x)g(x) + f(x)g'(x) Not simply the product of derivatives
Quotient f(x)g(x)\frac{f(x)}{g(x)} (f(x)g(x))=f(x)g(x)f(x)g(x)[g(x)]2\left(\frac{f(x)}{g(x)}\right)' = \frac{f'(x)g(x) - f(x)g'(x)}{[g(x)]^2} Only when g(x)0g(x) \ne 0
Composite f(g(x))f(g(x)) (f(g(x)))=f(g(x))g(x)(f(g(x)))' = f'(g(x)) \cdot g'(x) This is the Chain Rule

Why The Product Rule Has Two Terms

It is tempting to guess that (fg)=fg(fg)' = f'g', but that is wrong, and seeing why fixes the most common error. In a product, either factor can cause the whole quantity to change. Over a small step, ff changes while gg is roughly held, contributing f(x)g(x)f'(x)g(x), and gg changes while ff is roughly held, contributing f(x)g(x)f(x)g'(x). Adding the two contributions gives the two-term result f(x)g(x)+f(x)g(x)f'(x)g(x) + f(x)g'(x). The same logic explains why the quotient and chain rules carry the extra structure they do: every part that varies leaves its own term or factor behind. Keeping that picture in mind is faster than re-memorizing the formula.

Choosing The Formula From The Structure

Look at the outermost layer first. For (3x1)4(3x-1)^4, the outer layer is a 4th power, but 3x13x-1 sits inside, so the power rule alone is not enough; the Chain Rule is also needed. x2(3x1)4x^2(3x-1)^4 goes a step further: its outermost layer is two factors multiplied, so the first step is the Product Rule, and once you reach (3x1)4(3x-1)^4 you apply the Chain Rule. The key to many derivative problems is not the calculation but reading the structure at first glance.

Worked Example: Product And Chain Rules Together

Find the derivative of

f(x)=x2(3x1)4f(x) = x^2(3x-1)^4

The outermost layer is a product, so start with the Product Rule:

f(x)=(x2)(3x1)4+x2((3x1)4)f'(x) = (x^2)'(3x-1)^4 + x^2 \cdot \big((3x-1)^4\big)'

The first term is straightforward: (x2)=2x(x^2)' = 2x. In the second term, (3x1)4(3x-1)^4 is composite, so the Chain Rule gives

((3x1)4)=4(3x1)3(3x1)=12(3x1)3\big((3x-1)^4\big)' = 4(3x-1)^3 \cdot (3x-1)' = 12(3x-1)^3

since (3x1)=3(3x-1)' = 3. Substituting back,

f(x)=2x(3x1)4+12x2(3x1)3f'(x) = 2x(3x-1)^4 + 12x^2(3x-1)^3

Factoring the common terms,

f(x)=2x(3x1)3(9x1)f'(x) = 2x(3x-1)^3(9x-1)

The takeaway is the sequence: identify the outer product, then check whether any factor is composite. Once the sequence is right, you rarely pick the wrong formula.

Practice And Check Your Own Answers

Differentiate these two and verify each result yourself:

g(x)=x2+1x3andh(x)=sin(2x2)g(x) = \frac{x^2+1}{x-3} \qquad\text{and}\qquad h(x) = \sin(2x^2)

The first tests the Quotient Rule; the second tests whether you keep the inner derivative in the Chain Rule. After solving, run three checks: does the chosen rule match the outermost structure, did a composite include its inner derivative, and is a product or quotient result complete with all its terms? For h(x)h(x), confirm the answer is 4xcos(2x2)4x\cos(2x^2), not cos(2x2)\cos(2x^2) alone.

Calculation Traps That Cost Points

Applying the power rule too quickly. (3x1)4(3x-1)^4 is not plain x4x^4; writing only 4(3x1)34(3x-1)^3 drops the inner derivative 33.

Writing one term for the product rule. A product derivative has two terms, so f(x)g(x)f'(x)g'(x) or a single term is a typical error.

Forgetting the quotient condition. The Quotient Rule applies only where g(x)0g(x) \ne 0, so confirm the expression is defined at that point.

Expanding first when it is harder. Some expressions get longer after expansion; structural recognition usually beats algebraic speed.

Where Derivative Formulas Are Used

The most direct uses are finding the slope of a tangent line, studying whether a function is increasing or decreasing, and locating local maxima and minima. Beyond that they appear constantly in velocity, acceleration, marginal rates of change, curve analysis, and linear approximations. Whenever a problem asks "how fast" something changes at a point, you are in the realm of derivative applications.

One More To Solidify It

Try a function with a similar composite-inside-a-product structure and see whether you can name the structure before calculating. Recognizing the form first is the habit that makes these formulas reliable.

Frequently Asked Questions

What are the most important derivative formulas to memorize?
Start with the basic functions: the derivative of a constant is 0, of x to the n is n times x to the n minus 1, of e to the x is itself, of ln x is 1 over x for positive x, of sin x is cos x, and of cos x is negative sin x. These are the building blocks for all the differentiation rules.
How do you decide which differentiation rule to apply?
Recognize the structure before expanding anything. Differentiate sums and differences term by term, use the product rule for products, the quotient rule for quotients, and the chain rule for functions within functions. Look at the outermost layer first; an expression like x squared times a power of 3x minus 1 starts with the product rule.
Why is the derivative of a product not the product of the derivatives?
The product rule states that the derivative of f times g equals f prime times g plus f times g prime, not simply f prime times g prime. Both factors change with x, and each contributes a term where it changes while the other is held. Forgetting this is a common source of wrong answers.
When do you need the chain rule together with another rule?
Whenever a composite function appears inside a larger structure. For example, the quantity 3x minus 1 to the fourth power is a power with something inside, so the power rule alone is not enough and the chain rule is also required. An expression like x squared times that power needs the product rule first, then the chain rule.

Need help with a problem?

Upload your question and get a verified, step-by-step solution in seconds.

Open GPAI Solver →