Differentiation
Revise Differentiation for Additional Mathematics — revision notes and instant AI marking. Free to start.
Differentiation
Summary — What This Chapter Covers
- The gradient of a curve at a point = the gradient of the tangent at that point.
- The derivative (written
dy/dx) is a formula that gives you the gradient at any x-value. - Power rule: bring the power down, subtract one from it.
- Special derivatives for sin, cos, tan, eˣ, and ln x — memorise these cold.
- Chain rule for "function of a function" (composite functions).
- Product rule for two functions multiplied together.
- Quotient rule for one function divided by another.
- Using derivatives to find tangents, normals, and whether a function is increasing/decreasing.
- Second derivatives to classify stationary points as maximum, minimum, or point of inflection.
- Modelling & optimisation — using calculus to solve real "maximise/minimise" problems.
- Connected rates of change — chaining multiple derivatives together with the chain rule.
1. What Is Differentiation, Really?
The Gradient of a Curve
For a straight line, "gradient" is easy — it's the same everywhere, so you just do rise-over-run between any two points. But a curve is a problem: its steepness is constantly changing. The gradient at the bottom of a U-shape is different from the gradient near the top.
So mathematicians defined the gradient of a curve at a single point as the gradient of the tangent — the straight line that just grazes the curve at that exact point, touching it but not slicing through it.
Here's the key insight that makes calculus work: a tangent might touch the curve at one point but could still cross the curve somewhere completely different further along. That's fine — we only care about what's happening locally, right at our point of interest.
The Derivative — a "Gradient Machine"
The derivative of a function is itself a new function — one that tells you the gradient for any x-value you plug in. It's often called the gradient function.
For example, the derivative of y = x² is dy/dx = 2x. That single formula tells you:
- At
x = 1, the gradient is2(1) = 2 - At
x = 5, the gradient is2(5) = 10
One formula, infinite answers. That's the power of differentiation — you calculate it once and can then find the gradient anywhere on the curve instantly.
2. Differentiating Powers of x
This is the foundation rule everything else builds on. Powers of x follow a beautifully simple pattern: bring the power down in front, then subtract 1 from the power.
Two special cases are easy to forget but come up constantly:
You can differentiate term by term for any sum or difference of powers of x. But products and quotients cannot be split up like this — you must expand or simplify first before you can differentiate term by term.
y = (2x − 3)(x² − 4) by differentiating each bracket separately and multiplying. That's wrong! You must expand first to get a sum of powers of x, THEN differentiate term by term. (Unless you use the product rule — see Section 4.)
y = 4/x, rewrite it as a negative power first: y = 4x⁻¹. Only then apply the power rule.
Find dy/dx for y = 5x³ + 2x + 3/x² + 8
y = 5x³ + 2x + 3x⁻² + 8
dy/dx = 15x² + 2 − 6x⁻³
dy/dx = 15x² + 2 − 6/x³
3. Differentiating Special Functions
Trig Functions
These three results must simply be memorised — there's no shortcut. Crucially, they only work when angles are measured in radians. If your calculator is in degree mode during an exam, you will get every trig-calculus question wrong.
| y = | dy/dx = |
|---|---|
| sin x | cos x |
| cos x | −sin x |
| tan x | sec²x |
For the linear function (ax + b) inside the trig function, or any general function f(x), you get an extra factor from the chain rule (more on this in Section 4):
Exponentials and Logarithms
For linear inputs and general functions:
| y = | dy/dx = |
|---|---|
| e(ax+b) | ae(ax+b) |
| ln(ax+b) | a / (ax+b) |
| ef(x) | f′(x)ef(x) |
| ln(f(x)) | f′(x) / f(x) |
ln(kx) with respect to x is 1/x, NOT k/x! The constant k cancels out. Similarly, the derivative of e^(kx) is ke^(kx), NOT kxe^(kx−1) — you never "bring the power down" for exponentials, because x is in the power, not being raised to one.
A curve has equation y = e⁻³ˣ + 2ln x. Find the gradient at x = 2, giving your answer in the form a + bec.
dy/dx = −3e⁻³ˣ + 2(1/x)
dy/dx = −3e⁻⁶ + 2(1/2) = −3e⁻⁶ + 1
dy/dx = 1 − 3e⁻⁶
4. The Chain Rule
The chain rule is for differentiating composite functions — a "function of a function." The giveaway is that the variable x doesn't "appear alone"; something is being done to x before the outer function acts on it.
sin x — x appears alone, this is NOT composite.sin(3x + 2) — x is tripled and shifted BEFORE sine acts on it. This IS composite, and needs the chain rule.
The 3-step method:
- Step 1 — Identify the two functions: rewrite y as a function of u, and u as a function of x.
- Step 2 — Differentiate each part separately: find dy/du and du/dx.
- Step 3 — Multiply them together, then substitute u back in terms of x.
Find the derivative of y = (x² − 5x + 7)⁷
y = u⁷, where u = x² − 5x + 7
dy/du = 7u⁶ du/dx = 2x − 5
dy/dx = 7u⁶(2x−5) = 7(x²−5x+7)⁶(2x−5)
Two extremely common patterns worth knowing directly:
dy/dx = an(ax+b)ⁿ⁻¹
dy/dx = a / (2√(ax+b))
5. The Product Rule
Use this when two different functions of x are multiplied together — not composite (function of a function), but a genuine product like x²eˣ or sin x cos x.
sin(cos x) is composite (cosine goes INSIDE sine) → chain rule.sin x · cos x is a product (two separate functions multiplied) → product rule.
Method: Identify u and v, differentiate each separately to get u′ and v′, then plug into the formula. Arranging u, v, u′, v′ in a square with opposite diagonals matching can help you keep track.
Differentiate (5sinx − 7cosx)e3x+2
6. The Quotient Rule
Use this when one function is divided by another and both the top and bottom depend on x. (If only the numerator is a constant, it's often faster to rewrite using negative powers instead.)
Differentiate f(x) = cos2x / (x² + 2x + 1)
7. Applications of Differentiation
Finding Gradients & Approximate Changes
To find the gradient of a curve at a specific point: differentiate to get dy/dx, then substitute the x-coordinate in.
For small changes, gradient ≈ (change in y) / (change in x), so change in y ≈ gradient × change in x. This is a handy shortcut for estimating how y shifts when x nudges slightly.
Increasing & Decreasing Functions
To find the range of x-values where a function is increasing or decreasing: differentiate, then solve the inequality f′(x) > 0 or f′(x) < 0. Sketching the gradient function's graph (usually a parabola) helps you see which interval satisfies the inequality.
For what values of x is y = 2x³ − 3x² + 5 a decreasing function?
Tangents & Normals
A tangent touches the curve without crossing at that point; a normal is the straight line perpendicular to the tangent at that same point. To find the equation of either, you need a point and a gradient — then plug into y − y₁ = m(x − x₁).
f(x) = 2x⁴ + 3x⁻². Find the tangent at x=1 in the form y=mx+c.
Second Derivatives
Differentiate the derivative again and you get the second derivative, written d²y/dx². Note carefully where the powers of 2 sit — differentiating twice with respect to x twice.
If the first derivative tells you the gradient (rate of change of y), the second derivative tells you the rate of change of the gradient itself — in other words, whether the curve is bending upward (concave up, like a U) or downward (concave down, like an n).
Stationary Points & Their Nature
A stationary point is anywhere the gradient equals zero — the curve is momentarily flat. There are three types: local maximum (peak), local minimum (valley), and point of inflection (a flat "shoulder" that isn't a peak or valley).
To find stationary points:
- Step 1 — Find dy/dx
- Step 2 — Solve dy/dx = 0 to find the x-coordinates
- Step 3 — Substitute back into the original equation to get y-coordinates
To classify each one, use the (usually faster) second derivative test:
Find and classify the stationary points of y = x²(2x² − 4)
Modelling & Optimisation
Optimisation problems ask you to find the biggest or smallest possible value of something — maximum volume, minimum cost, minimum material used. The method is always the same recipe: build a formula, differentiate it, set the derivative to zero, solve, and use the second derivative to confirm you've found a max or min (not just any stationary point).
Connected Rates of Change
When a problem involves more than two variables (like volume, radius, and time all at once), you use the chain rule to "connect" rates you know to a rate you want to find.
Watch for the keyword "rate" — it always signals a derivative with respect to time is involved. "Increasing at a rate of 4 cm/s" means dh/dt = 4; "decreasing" means the rate is negative.
The volume of a cube increases at a constant rate of 3 cm³/s. Find the rate of change of the side length s when s = 5cm.
What to Memorise
| Function y = | Derivative dy/dx = |
|---|---|
| axⁿ | anxn−1 |
| ax | a |
| a (constant) | 0 |
| sin x | cos x |
| cos x | −sin x |
| tan x | sec²x |
| eˣ | eˣ |
| ln x | 1/x |
| sin(ax+b) | a cos(ax+b) |
| cos(ax+b) | −a sin(ax+b) |
| tan(ax+b) | a sec²(ax+b) |
| eax+b | aeax+b |
| ln(ax+b) | a/(ax+b) |
The three big rules:
Tangent/normal equations:
Stationary point classification:
Concepts Checklist
Exam Tips & Common Traps
- Exam Tips & Common Traps
- Finding Gradients & Approximate Changes
- Increasing & Decreasing Functions
- Tangents & Normals
- Stationary Points & Their Nature
- Modelling & Optimisation
Read the full Differentiation notes free
That's the preview — create a free account to read the rest, plus flashcards and practice questions with instant AI marking. No credit card.
Unlock the full notes free →