MathNana Learn with wisdom

Mistakes · Calculus

6 Common Differentiation Mistakes

Five of the six are caught by evaluating your answer at one value of x and comparing it with a difference quotient.

6 min read Updated 2026-08-21 Checked by Aziza Smailovic

1. Forgetting the chain factor

The most expensive of the common differentiation mistakes. Writing the derivative of sin(2x) as cos(2x) is right except for the factor of 2 — and that factor is the entire chain rule.

FunctionCorrectThe usual wrong version
sin(2x)2cos(2x)cos(2x)
(2x + 1)⁵10(2x + 1)⁴5(2x + 1)⁴
e^(3x)3e^(3x)e^(3x)

It survives because the wrong answer looks structurally right. The check: is there anything other than a bare x inside? If so, a factor is owed.

2. Multiplying the derivatives of a product

(uv)′ is not u′v′. The product rule is u′v + uv′, and the shortcut version is simply false.

Test it on the simplest possible case. For x·x the derivative is 2x, but multiplying the derivatives gives 1·1 = 1. One example settles it permanently.

3. Losing the minus sign on cos

The derivative of cos x is −sin x. Dropping the minus flips the sign of the whole term, and in a longer expression the error is easy to miss.

The pattern worth holding on to: the 'co' functions all pick up a minus. cos gives −sin, cot gives −csc², csc gives −csc·cot, and arccos carries one too.

4. Treating a constant as a variable

In 3x², the 3 is a constant multiplier and stays put: the derivative is 6x. Applying the product rule as though 3 were a function of x gives 0·x² + 3·2x, which happens to be right but is a great deal of unnecessary work.

The genuinely damaging version is the reverse: differentiating a constant to something other than zero. In 3x² + 7 the 7 does not disappear by carelessness — it becomes 0, which is why differentiating destroys all information about it.

5. Mishandling a negative exponent

The power rule works for every exponent, but subtracting one from a negative or fractional power is where the arithmetic slips.

FunctionAs a powerDerivative
1/x²x⁻²−2x⁻³, not −2x⁻¹
√xx^½½x^−½
1/√xx^−½−½x^−³ᐟ²

The first row is the trap: reducing −2 by one gives −3, not −1. Moving away from zero feels wrong and is correct.

6. Stopping before the answer is usable

A derivative left as x·(1/x) + ln x is correct and unfinished. Simplifying to ln x + 1 is part of the answer, and it matters because the next step — finding a stationary point, say — needs a form you can set equal to zero.

The reverse error also exists: simplifying so aggressively that a sign or a factor is lost. Tidy in small steps and check the value at one point before and after.

The check that catches nearly all of them

Evaluate your derivative at a convenient value of x, then compare it with a difference quotient of the original function at the same point: (f(x + h) − f(x − h)) / 2h with h around 0.001.

For sin(2x) at x = 1, the correct derivative gives 2cos 2 ≈ −0.832 and the difference quotient gives −0.832. The version missing the chain factor gives −0.416, and the discrepancy is immediate.

This is not a classroom trick. It is exactly how the calculator on this site is tested, across every expression it accepts, precisely because a numeric estimate knows nothing about the rules and cannot make the same mistake twice.

Questions about common differentiation mistakes

Why do I keep forgetting the chain rule?

Because the answer without it looks correct. Build the habit of asking what is inside the function before differentiating the outside.

Is the derivative of a product the product of the derivatives?

No. It is u′v + uv′. Test the claim on x·x: the answer is 2x, not 1.

What is the derivative of 1/x²?

−2x⁻³. Rewrite as x⁻², then apply the power rule: the exponent −2 comes down and reduces to −3.

How do I check a derivative quickly?

Pick a value of x and compare your derivative with (f(x + h) − f(x − h))/2h for small h. They should agree to several decimal places.