Year 11 Maths Advanced Module 3 ⏱ ~40 min Lesson 4 of 15

Differentiation Rules

Differentiating from first principles is powerful, but tedious. What if there were shortcuts? In this lesson, you will learn the three fundamental rules — power, constant multiple, and sum/difference — that let you differentiate polynomials in seconds instead of minutes.

Printable worksheet

Download this lesson's worksheet

Use the PDF for classwork, homework or revision. It includes key ideas, activities, questions, an extend task and success-criteria proof.

Think First

Consider the function $f(x) = x^3 + 2x$. If you had to find its derivative using first principles, you would need to expand $(x+h)^3$, simplify, cancel $h$, and take a limit. That takes several minutes. Do you think there might be a faster way to differentiate terms like $x^3$ and $2x$ individually? What pattern do you notice from derivatives you have already calculated?

Type your initial response below — you will revisit this at the end of the lesson.

Write your initial response in your book. You will revisit it at the end of the lesson.

Write your initial thinking in your book
Saved
📐

Formula Reference — This Lesson

Power rule
$$\frac{d}{dx}\bigl(x^n\bigr) = nx^{n-1}$$
Constant multiple rule
$$\frac{d}{dx}\bigl(cf(x)\bigr) = c \cdot f'(x)$$
Sum / difference rule
$$\frac{d}{dx}\bigl(f(x) \pm g(x)\bigr) = f'(x) \pm g'(x)$$
Constant rule
$$\frac{d}{dx}(c) = 0$$
Key insight: These rules work for all real exponents $n$ (including fractions and negatives), and they let you differentiate any polynomial term-by-term.
📖 Know

Key Facts

  • The power rule: $\frac{d}{dx}(x^n) = nx^{n-1}$
  • The constant multiple, sum, and difference rules
  • How to rewrite roots and reciprocals as powers
💡 Understand

Concepts

  • Why the power rule is consistent with first principles
  • How differentiation is a linear operation
  • When to rewrite expressions before differentiating
✅ Can Do

Skills

  • Differentiate polynomials efficiently using the rules
  • Rewrite radicals and fractions as powers to differentiate
  • Find equations of tangents and normals using derivatives

Misconceptions to Fix

Wrong: (a + b)² = a² + b².

Right: (a + b)² = a² + 2ab + b²; the middle term 2ab is essential and commonly forgotten.

Key Terms
DerivativeThe rate of change of a function at a point; the gradient of the tangent.
DifferentiationThe process of finding the derivative of a function.
Stationary PointA point where the derivative equals zero.
Chain RuleA rule for differentiating composite functions: dy/dx = dy/du × du/dx.
Product RuleA rule for differentiating products: d(uv)/dx = u(dv/dx) + v(du/dx).
Power RuleIf f(x) = x^n, then f'(x) = n*x^(n-1) for all real n.

The Power Rule

If $f(x) = x^n$, then:

$$f'(x) = nx^{n-1}$$

This works for any real number $n$ — positive integers, fractions, negatives, and zero. You simply bring the power down to the front and subtract one from the power.

Examples

Why this matters for physics. Kinetic energy is $E = \frac{1}{2}mv^2$. If you want to know how kinetic energy changes with velocity, you differentiate with respect to $v$: $\frac{dE}{dv} = mv$. This is exactly the momentum of the object — a beautiful link between two fundamental quantities that physicists use every day.

Constant Multiple and Sum / Difference Rules

Constant Multiple Rule

Constants slide straight past the derivative:

$$\frac{d}{dx}\bigl(cf(x)\bigr) = c \cdot f'(x)$$

For example: $\frac{d}{dx}(7x^3) = 7 \cdot 3x^2 = 21x^2$.

Sum and Difference Rule

You can differentiate term by term:

$$\frac{d}{dx}\bigl(f(x) \pm g(x)\bigr) = f'(x) \pm g'(x)$$

For example: if $y = 4x^3 - 2x^2 + 5x - 7$, then:

$$\frac{dy}{dx} = 12x^2 - 4x + 5$$

Notice that the derivative of the constant $-7$ is $0$.

📐

Tangents and Normals

Once you have the derivative, finding the equation of a tangent line is straightforward.

Equation of a Tangent

At $x = a$, the gradient of the tangent is $m = f'(a)$. Using point–gradient form with the point $(a, f(a))$:

$$y - f(a) = f'(a)(x - a)$$

Equation of a Normal

The normal is perpendicular to the tangent. If the tangent has gradient $m$, the normal has gradient $-\frac{1}{m}$ (provided $m \neq 0$):

$$y - f(a) = -\frac{1}{f'(a)}(x - a)$$

🧮 Worked Examples

Worked Example 1 — Differentiate a Polynomial

Stepwise
Find $\frac{dy}{dx}$ for $y = 3x^4 - 2x^3 + 5x - 7$.
  1. 1
    Differentiate term by term
    \frac{d}{dx}(3x^4) = 3 \cdot 4x^3 = 12x^3
    \frac{d}{dx}(-2x^3) = -2 \cdot 3x^2 = -6x^2
    \frac{d}{dx}(5x) = 5 \cdot 1 = 5
    \frac{d}{dx}(-7) = 0
  2. 2
    Combine the results
    \frac{dy}{dx} = 12x^3 - 6x^2 + 5
✓ Answer $\frac{dy}{dx} = 12x^3 - 6x^2 + 5$

Worked Example 2 — Rewrite Before Differentiating

Stepwise
Differentiate $f(x) = \frac{2}{x^3} + \sqrt{x}$.
  1. 1
    Rewrite using index notation
    f(x) = 2x^{-3} + x^{1/2}
  2. 2
    Apply the power rule to each term
    \frac{d}{dx}(2x^{-3}) = 2 \cdot (-3)x^{-4} = -6x^{-4}
    \frac{d}{dx}(x^{1/2}) = \frac{1}{2}x^{-1/2}
  3. 3
    Rewrite in original form if desired
    f'(x) = -\frac{6}{x^4} + \frac{1}{2\sqrt{x}}
✓ Answer $f'(x) = -\frac{6}{x^4} + \frac{1}{2\sqrt{x}}$

Worked Example 3 — Equation of a Tangent

Stepwise
Find the equation of the tangent to $y = x^2 + 3x$ at $x = 2$.
  1. 1
    Find the derivative
    \frac{dy}{dx} = 2x + 3
  2. 2
    Evaluate the gradient at $x = 2$
    m = 2(2) + 3 = 7
  3. 3
    Find the point on the curve
    y = (2)^2 + 3(2) = 10 \quad \Rightarrow \quad (2, 10)
  4. 4
    Use point–gradient form
    y - 10 = 7(x - 2)
    y = 7x - 4
✓ Answer $y = 7x - 4$
⚠️

Common Mistakes — Don't Lose Easy Marks

Applying the power rule to a constant
Some students write $\frac{d}{dx}(5) = 5x^0 = 5$. This is wrong — the derivative of any constant is $0$.
✓ Fix: Remember the constant rule: $\frac{d}{dx}(c) = 0$.
Forgetting to rewrite roots and fractions as powers
Trying to differentiate $\sqrt{x}$ or $\frac{1}{x^2}$ directly without rewriting as $x^{1/2}$ or $x^{-2}$ leads to errors.
✓ Fix: Always rewrite in index form before applying the power rule.
Sign errors with negative exponents
When differentiating $x^{-3}$, students sometimes write $-3x^{-2}$ instead of $-3x^{-4}$.
✓ Fix: Multiply by the existing power, then subtract 1: $-3 \times x^{-3-1} = -3x^{-4}$.
Using the wrong gradient for the normal
The normal gradient is $-\frac{1}{m}$, not $\frac{1}{m}$ or $m$.
✓ Fix: Perpendicular gradients multiply to $-1$. If $m_1 \cdot m_2 = -1$, then $m_2 = -\frac{1}{m_1}$.

📓 Copy Into Your Books

⚡ Power rule

  • $\frac{d}{dx}(x^n) = nx^{n-1}$

➕ Sum / difference

  • Differentiate term by term

🔢 Constant rules

  • $\frac{d}{dx}(cf) = c \cdot f'$
  • $\frac{d}{dx}(c) = 0$

📐 Tangent & normal

  • Tangent: $y - f(a) = f'(a)(x - a)$
  • Normal: gradient $= -\frac{1}{f'(a)}$

📝 How are you completing this lesson?

🧪 Activities

🔍 Activity 1 — Calculate

Differentiate Using the Rules

Find the derivative of each function. Simplify your answer.

  1. 1 $f(x) = x^5 - 3x^2 + 4x - 1$

    Type your answer:

    Answer in your workbook.

    Answer in your workbook
  2. 2 $y = 4x^3 + \frac{2}{x}$

    Type your answer:

    Answer in your workbook.

    Answer in your workbook
  3. 3 $f(x) = \sqrt{x} + x^2$

    Type your answer:

    Answer in your workbook.

    Answer in your workbook
  4. 4 Find the equation of the tangent to $y = x^2 - 4x$ at $x = 3$.

    Type your answer:

    Answer in your workbook.

    Answer in your workbook
🎨 Activity 2 — Interpret

Explain the Process

Use words to describe what is happening.

  1. 1 Explain why $\frac{d}{dx}(x^3 + x^2) = \frac{d}{dx}(x^3) + \frac{d}{dx}(x^2)$. What property of differentiation makes this valid?

    Type your answer:

    Answer in your workbook.

    Answer in your workbook
  2. 2 A student differentiates $f(x) = \frac{1}{x^2}$ and gets $f'(x) = -\frac{1}{x}$. Identify the error and give the correct derivative.

    Type your answer:

    Answer in your workbook.

    Answer in your workbook
Revisit Your Thinking

Earlier you thought about whether there might be a faster way to differentiate $f(x) = x^3 + 2x$ than using first principles.

There is: using the power rule, we differentiate each term separately. The derivative of $x^3$ is $3x^2$, and the derivative of $2x$ is $2$. So $f'(x) = 3x^2 + 2$ — a process that takes seconds rather than minutes. This is why the differentiation rules are so powerful: they preserve the rigour of calculus while making computation practical.

Now revisit your initial response. What did you get right? What has changed in your thinking?

Look back at your initial response in your book. Annotate it with what you now understand differently.

Annotate your initial response in your book
Saved
Interactive: Differentiation Rule Matcher
Revisit Your Initial Thinking

Look back at what you wrote in the Think First section. What has changed? What did you get right? What surprised you?

MC

Multiple Choice

5 random questions from a replayable lesson bank — feedback shown immediately

✍️ Short Answer

📝

Extended Questions

ApplyBand 4

6. (a) Find $f'(x)$ for $f(x) = 2x^4 - 3x^2 + 5x - 2$. 2 MARKS

(b) Find the equation of the tangent to $y = 2x^4 - 3x^2 + 5x - 2$ at $x = 1$. 2 MARKS

Type your answers below:

Answer in your workbook.

✏️ Answer in your workbook
AnalyseBand 5

7. A curve has equation $y = ax^2 + bx + c$. The tangent to the curve at $x = 1$ has gradient 1, and the curve passes through the point $(1, 5)$. The normal at $x = 1$ intersects the $y$-axis at $(0, 6)$. Find the values of $a$, $b$, and $c$. 4 MARKS

Type your answer below:

Answer in your workbook.

✏️ Answer in your workbook
AnalyseBand 5

8. The population of bacteria in a dish is modelled by $P(t) = 500 + 20t^2$, where $t$ is in hours. 3 MARKS

(a) Find the rate of change of the population at $t = 3$ hours.

(b) Explain what this value means in the context of the problem.

Type your answer below:

Answer in your workbook.

✏️ Answer in your workbook

✅ Comprehensive Answers

🔍 Activity 1 — Calculate Model Answers

1. $f'(x) = 5x^4 - 6x + 4$

2. $y = 4x^3 + 2x^{-1}$, so $\frac{dy}{dx} = 12x^2 - 2x^{-2} = 12x^2 - \frac{2}{x^2}$

3. $f(x) = x^{1/2} + x^2$, so $f'(x) = \frac{1}{2}x^{-1/2} + 2x = \frac{1}{2\sqrt{x}} + 2x$

4. $\frac{dy}{dx} = 2x - 4$, so at $x = 3$, $m = 2$. Point: $(3, -3)$. Tangent: $y + 3 = 2(x - 3)$, so $y = 2x - 9$.

🎨 Activity 2 — Interpret Model Answers

1. This works because differentiation is a linear operation. The derivative of a sum is the sum of the derivatives (sum rule).

2. The student forgot to reduce the power by 1. Since $f(x) = x^{-2}$, the correct derivative is $f'(x) = -2x^{-3} = -\frac{2}{x^3}$.

❓ Multiple Choice

1. B — Using the power rule: $\frac{d}{dx}(x^4) = 4x^3$.

2. A — $\frac{d}{dx}(3x^2 + 2x) = 6x + 2$.

3. A — Rewrite as $x^{1/2}$, then $\frac{d}{dx}(x^{1/2}) = \frac{1}{2}x^{-1/2} = \frac{1}{2\sqrt{x}}$.

4. B — Rewrite as $x^{-1}$, then $\frac{d}{dx}(x^{-1}) = -x^{-2} = -\frac{1}{x^2}$.

5. B — At $x = 2$, $y = 4$ and $\frac{dy}{dx} = 4$, so the normal has gradient $-\frac{1}{4}$. Equation: $y - 4 = -\frac{1}{4}(x - 2)$, which simplifies to $y = -\frac{1}{4}x + \frac{9}{2}$.

6. C — The derivative of any constant is zero.

7. B — Rewrite as $3x^{-2}$, then $\frac{dy}{dx} = -6x^{-3} = -\frac{6}{x^3}$.

📝 Short Answer Model Answers

Q6 (4 marks): (a) $f'(x) = 8x^3 - 6x + 5$ [1]. (b) At $x = 1$, $y = 2(1)^4 - 3(1)^2 + 5(1) - 2 = 2$ [1]. The gradient is $m = f'(1) = 8 - 6 + 5 = 7$ [1]. Using point–gradient form: $y - 2 = 7(x - 1)$, so $y = 7x - 5$ [1].

Q7 (4 marks): First, $\frac{dy}{dx} = 2ax + b$ [1]. The tangent at $x = 1$ has gradient $1$, so $2a + b = 1$ [1]. The curve passes through $(1, 5)$, giving $a + b + c = 5$ [1]. The normal at $x = 1$ passes through $(1, 5)$ and $(0, 6)$, so its gradient is $\frac{6-5}{0-1} = -1$, confirming the tangent gradient is $1$. Solving simultaneously gives $a = 1$, $b = -1$, $c = 5$ [1].

Q8 (3 marks): (a) $P'(t) = 40t$, so at $t = 3$, $P'(3) = 120$ bacteria per hour [2]. (b) After 3 hours, the population is increasing at a rate of 120 bacteria per hour [1].

Consolidation Game

Differentiation Rules

Mark lesson as complete

Tick when you've finished all activities and checked your answers.