# Differentiation (Edexcel IAL Pure Mathematics 1)

> Mathematics · Edexcel IAL P1 (2018 Spec)
> Source: https://www.owlsprep.com/study/edexcel-ial-math-p1-differentiation/

This guide covers all differentiation content for Edexcel IAL Pure Mathematics 1 (WMA11), including derivative concepts, differentiation of powers of x, and equations of tangents and normals, aligned exactly to the 2018 specification.

**Prerequisites:** [Algebra manipulation (expanding brackets, simplifying indices)](https://www.owlsprep.com/study/edexcel-ial-math-p1-algebraic-manipulation/); [Equations of straight lines](https://www.owlsprep.com/study/edexcel-ial-math-p1-straight-line-graphs/)

## Learning objectives

- Explain the derivative as the gradient of a curve and instantaneous rate of change
- Differentiate $x^n$ for all rational $n$, and sums/differences of power terms
- Compute first and second derivatives for P1-level functions
- Calculate equations of tangents and normals to curves at given points
- Avoid common P1 differentiation errors in exam scenarios

## What is the Derivative?

**Derivative** — The gradient of the tangent to the curve $y=f(x)$ at a given point, representing the instantaneous rate of change of $y$ with respect to $x$.

*Notation:* $f'(x)$ or $\frac{dy}{dx}$

*Example:* If $f(t)$ models distance travelled over time, $f'(t)$ is instantaneous speed.

Differentiation from first principles uses the informal concept of a limit: you take two points on a curve separated by a small increment $h$, calculate the gradient of the chord between them, then let $h$ approach 0 to get the tangent gradient. For P1, you only need to understand this concept, not prove derivative rules from first principles.

**Second Derivative** — The result of differentiating the first derivative of a function, representing the rate of change of the gradient of the curve.

*Notation:* $f''(x)$ or $\frac{d^2y}{dx^2}$

> **note**
>
> You do NOT need to use the second derivative to find or classify stationary points in P1: this content is tested in P2 only. You only need to compute $f''(x)$ and explain its conceptual meaning.

**Worked example:** State what $f'(t)$ and $f''(t)$ represent for the function $f(t) = 3t + 2t^2$, which models the height of a ball in metres at time $t$ seconds.

1. $f'(t)$ is the first derivative of height with respect to time, so it represents the instantaneous vertical velocity of the ball in $ms^{-1}$.
2. $f''(t)$ is the second derivative of height with respect to time, so it represents the instantaneous vertical acceleration of the ball in $ms^{-2}$.

> **Exam tip:** If asked to explain the meaning of a derivative in context, always include units where possible to gain full marks.

*Calculator:* allowed

## Differentiating Powers of x

The core differentiation rule you need for P1 applies to any term of the form $ax^n$, where $a$ is a constant and $n$ is any rational number (positive, negative, fractional).

**Power Rule for Differentiation** — For $f(x) = ax^n$, the first derivative is $f'(x) = anx^{n-1}$. To differentiate a sum or difference of terms, differentiate each term individually and add/subtract the results.

Before differentiating any function, first simplify or expand it into a sum of separate $ax^n$ terms. You do NOT need product, quotient or chain rules for P1: all given functions can be rewritten this way.

**Worked example:** Differentiate $y = 4x^3 + 2\sqrt{x} - \frac{3}{x^2}$ with respect to $x$, then find the second derivative $\frac{d^2y}{dx^2}$.

1. Rewrite all terms in $ax^n$ form first:
2. $$y = 4x^3 + 2x^{\frac{1}{2}} - 3x^{-2}$$
3. Apply the power rule to each term for the first derivative:
4. $$\frac{dy}{dx} = (3 \times 4)x^{2} + (\frac{1}{2} \times 2)x^{-\frac{1}{2}} - (-2 \times 3)x^{-3}$$
5. Simplify the first derivative:
6. $$\frac{dy}{dx} = 12x^2 + x^{-\frac{1}{2}} + 6x^{-3}$$
7. Differentiate again to get the second derivative, applying the power rule to each term of the first derivative:
8. $$\frac{d^2y}{dx^2} = 24x - \frac{1}{2}x^{-\frac{3}{2}} - 18x^{-4}$$

> **Exam tip:** Always rewrite square roots, cube roots and terms with $x$ in the denominator into index form before differentiating to avoid arithmetic mistakes.

*Calculator:* allowed

## Equations of Tangents to Curves

A tangent to a curve at a point is a straight line that touches the curve only at that point, with gradient equal to the derivative of the curve at that x-coordinate.

1. Calculate the derivative of the curve function to get the gradient function
2. Substitute the x-value of the given point into the derivative to get the gradient of the tangent
3. Use the point-slope form of a straight line $y - y_1 = m(x - x_1)$ where $(x_1, y_1)$ is the point on the curve and $m$ is the tangent gradient

**Worked example:** Find the equation of the tangent to the curve $y = x^3 - 2x + 5$ at the point where $x = 2$. Give your answer in the form $ax + by + c = 0$ where a, b, c are integers.

1. First find the y-coordinate of the point when $x=2$:
2. $$y = 2^3 - 2(2) +5 = 8 -4 +5 = 9. \text{ The point is } (2, 9)$$
3. Differentiate the curve to get the gradient function:
4. $$\frac{dy}{dx} = 3x^2 - 2$$
5. Substitute $x=2$ to find the tangent gradient:
6. $$m = 3(2)^2 - 2 = 12 - 2 = 10$$
7. Use point-slope form and rearrange to required form:
8. $$y - 9 = 10(x - 2) \rightarrow 10x - y - 11 = 0$$

> **Exam tip:** Always check you have the correct y-coordinate of the point first: many students forget to calculate this and use the x-value as y, losing easy marks.

*Calculator:* allowed

## Equations of Normals to Curves

**Normal to a Curve** — A straight line that passes through a point on a curve and is perpendicular to the tangent at that point.

*Example:* If a tangent has gradient 3, the normal at the same point has gradient $-\frac{1}{3}$.

The product of the gradients of two perpendicular lines is -1, so if the tangent gradient is $m_t$, the normal gradient is $m_n = -\frac{1}{m_t}$. The rest of the process for finding the normal equation is identical to finding the tangent equation.

**Worked example:** Find the equation of the normal to the curve $y = 2x^2 - \frac{1}{x}$ at the point where $x = 1$. Give your answer in the form $y = mx + c$.

1. Calculate the y-coordinate at $x=1$:
2. $$y = 2(1)^2 - \frac{1}{1} = 2 - 1 = 1. \text{ The point is } (1, 1)$$
3. Rewrite the function in index form and differentiate:
4. $$y = 2x^2 - x^{-1} \rightarrow \frac{dy}{dx} = 4x + x^{-2}$$
5. Find the tangent gradient at $x=1$:
6. $$m_t = 4(1) + 1^{-2} = 4 +1 = 5$$
7. Calculate the normal gradient, the negative reciprocal of $m_t$:
8. $$m_n = -\frac{1}{5}$$
9. Use point-slope form and rearrange to required form:
10. $$y -1 = -\frac{1}{5}(x -1) \rightarrow y = -\frac{1}{5}x + \frac{6}{5}$$

> **Exam tip:** If the tangent gradient is 0 (horizontal tangent), the normal is a vertical line of the form $x = x_1$, as it has an undefined gradient. Check for this case to avoid division by zero errors.

*Calculator:* allowed

## Common pitfalls

- **Wrong:** Trying to use product/quotient/chain rules to differentiate functions instead of expanding/simplifying first.
  - Why it fails: Edexcel P1 questions are designed to be solved without these rules, and using them leads to unnecessary errors, wasted time, and potential mark loss if applied incorrectly.
  - Correct: Always rewrite all terms as separate $ax^n$ terms (expand brackets, simplify indices, rewrite roots/denominator terms) before applying the power rule.
- **Wrong:** Substituting the x-coordinate into the original curve function instead of the derivative to find the gradient of the tangent/normal.
  - Why it fails: The original function gives you the y-value of the point, not the gradient, so you will get the wrong line equation.
  - Correct: First differentiate the curve to get the gradient function, then substitute the x-value into the derivative to get the gradient of the tangent or normal.
- **Wrong:** Using the tangent gradient directly for the normal equation instead of taking the negative reciprocal.
  - Why it fails: The normal is perpendicular to the tangent, so their gradients multiply to -1, they are not the same.
  - Correct: After finding the tangent gradient $m_t$, calculate the normal gradient as $m_n = -\frac{1}{m_t}$ (unless $m_t = 0$, in which case the normal is vertical $x=x_1$).
- **Wrong:** Forgetting to reduce the power by 1 when applying the power rule, especially for negative or fractional powers.
  - Why it fails: This common arithmetic error leads to incorrect derivatives and all subsequent calculations being wrong.
  - Correct: Write down the exponent of each term clearly before differentiating, subtract 1 from the exponent, and double-check for negative/fractional exponents.
- **Wrong:** Using the second derivative to classify stationary points in P1 exams.
  - Why it fails: Stationary points and their classification are explicitly out of scope for P1, so any work related to them will not gain marks and wastes time.
  - Correct: Only compute the second derivative if explicitly asked, and only explain its meaning as the rate of change of gradient; do not use it for stationary point analysis in P1.

## Cheatsheet

| Concept | Rule / Formula |
| --- | --- |
| Derivative meaning | Gradient of tangent to curve, instantaneous rate of change of $f(x)$ |
| Power Rule | $\frac{d}{dx}(ax^n) = anx^{n-1}$ for any rational $n$ |
| Second derivative | Differentiate first derivative: $f''(x) = \frac{d}{dx}(f'(x))$ |
| Tangent gradient | $m_t = f'(x_1)$ at point $(x_1, y_1)$ |
| Normal gradient | $m_n = -\frac{1}{m_t}$ (perpendicular to tangent) |
| Line equation | $y - y_1 = m(x - x_1)$ for point $(x_1, y_1)$ and gradient $m$ |

## What's next

Now that you have mastered P1 differentiation, you are ready to move to more advanced differentiation content in P2, including stationary points, the chain rule, and optimisation problems. These build directly on the power rule and line equation skills you have learned here, so make sure you can reliably differentiate sums of powers and find tangents/normals before progressing. You will also use differentiation skills in later applied units, including kinematics in Mechanics 1 and rate of change problems in Statistics 1.

---

From [OwlsPrep](https://www.owlsprep.com) — free study guides for A-Level, IB, AP and IGCSE, written against the official syllabus. Canonical page: https://www.owlsprep.com/study/edexcel-ial-math-p1-differentiation/
