# Differentiation of products, quotients and composite functions

> Edexcel International GCSE Further Pure Mathematics · 4PM1
> Source: https://www.owlsprep.com/study/edexcel-igcse-further-pure-math-s9-differentiation-of-products-quotients-and/

This guide teaches you the three core differentiation rules for Edexcel IGCSE Further Pure Maths: product, quotient, and chain rules. You will learn to apply these to polynomial, trigonometric and exponential functions, with exam-aligned worked examples.

**Prerequisites:** [Basic differentiation of powers of x, sin(kx), cos(kx) and e^(kx)](https://www.owlsprep.com/study/edexcel-igcse-further-pure-math-s9-basic-differentiation-rules/); Understanding of composite functions

## Learning objectives

- Recall product and chain rules, and correctly use the given quotient rule for differentiation
- Differentiate simple composite functions using the chain rule
- Combine all three rules to differentiate combinations of polynomial, sin(kx), cos(kx) and e^(kx) functions
- Follow exam-standard notation to show clear working for differentiation questions

## 1. The Product Rule

**Product Rule** — Used to differentiate the product of two differentiable functions u(x) and v(x). You must recall this formula for your exam.

*Notation:* \frac{d}{dx}(uv) = u'v + uv'

*Example:* Differentiate $f(x) = x^2 \sin(3x)$

To apply the product rule, first label the two functions being multiplied as u and v. Calculate their derivatives u' and v', then substitute into the product rule formula. Always simplify your final answer where possible.

**Worked example:** Differentiate $y = e^{2x} \cos(5x)$ with respect to x.

1. Step 1: Label the two factors u and v: $u = e^{2x}$, $v = \cos(5x)$
2. Step 2: Calculate the derivatives of u and v:

   $$u' = 2e^{2x}, v' = -5\sin(5x)$$
3. Step 3: Substitute into the product rule formula:

   $$\frac{dy}{dx} = (2e^{2x})(\cos 5x) + (e^{2x})(-5\sin 5x)$$
4. Step 4: Simplify by factoring out common terms:

   $$\frac{dy}{dx} = e^{2x}(2\cos 5x - 5\sin 5x)$$

> **Exam tip:** Always explicitly state u, v, u' and v' in your working to earn method marks even if you make an arithmetic error.

*Calculator:* allowed

## 2. The Quotient Rule

**Quotient Rule** — Used to differentiate the quotient of two differentiable functions u(x) (numerator) and v(x) (denominator). This formula is given on your exam formula sheet.

*Notation:* \frac{d}{dx}\left(\frac{u}{v}\right) = \frac{u'v - uv'}{v^2}

*Example:* Differentiate $f(x) = \frac{3x + 1}{x^2 - 2}$

When using the quotient rule, make sure you assign u to the numerator and v to the denominator. Pay close attention to the subtraction in the numerator of the formula, as sign errors are very common here.

> **warning**
>
> The order of subtraction in the quotient rule numerator is critical: u'v comes first, then subtract uv'. Swapping these terms will give you the negative of the correct answer.

**Worked example:** Differentiate $y = \frac{\sin(2x)}{4x + 1}$ with respect to x, leaving your answer as a single fraction.

1. Step 1: Assign u to the numerator and v to the denominator: $u = \sin(2x)$, $v = 4x + 1$
2. Step 2: Calculate derivatives: $u' = 2\cos(2x)$, $v' = 4$
3. Step 3: Substitute into the quotient rule formula:

   $$\frac{dy}{dx} = \frac{(2\cos 2x)(4x + 1) - (\sin 2x)(4)}{(4x + 1)^2}$$
4. Step 4: Simplify the numerator by expanding the first term:

   $$\frac{dy}{dx} = \frac{2(4x + 1)\cos 2x - 4\sin 2x}{(4x + 1)^2}$$

*Calculator:* allowed

## 3. The Chain Rule (Composite Functions)

**Chain Rule** — Used to differentiate composite (function of a function) expressions, where one function is applied inside another. You must recall this formula for your exam.

*Notation:* If $y = f(g(x))$, then $\frac{dy}{dx} = f'(g(x)) \times g'(x)$ (or $\frac{dy}{dx} = \frac{dy}{du} \times \frac{du}{dx}$ when substituting $u = g(x)$)

*Example:* Differentiate $f(x) = (x^3 - 2x)^5$

For simple composite functions at IGCSE FPM level, you can often apply the chain rule directly: multiply by the power, reduce the power by 1, then multiply by the derivative of the inner function. This works for powers, trigonometric and exponential composite functions.

**Worked example:** Differentiate $y = (\cos(3x))^4$ with respect to x.

1. Step 1: Identify the inner function $u = \cos(3x)$, so $y = u^4$
2. Step 2: Calculate derivatives of y with respect to u, and u with respect to x:

   $$\frac{dy}{du} = 4u^3, \frac{du}{dx} = -3\sin(3x)$$
3. Step 3: Apply the chain rule $\frac{dy}{dx} = \frac{dy}{du} \times \frac{du}{dx}$:

   $$\frac{dy}{dx} = 4u^3 \times (-3\sin 3x)$$
4. Step 4: Substitute back $u = \cos(3x)$ and simplify:

   $$\frac{dy}{dx} = -12\cos^3(3x) \sin(3x)$$

> **Exam tip:** For simple powers of functions, you can use the shortcut: $\frac{d}{dx}[f(x)]^n = n[f(x)]^{n-1} \times f'(x)$ to save time in exams, as long as you show enough working.

*Calculator:* allowed

## 4. Combining Multiple Differentiation Rules

Most exam questions will require you to use more than one differentiation rule in the same problem. For example, a product where one term is a composite function, or a quotient where the numerator is a product. Always break the problem down step by step, identifying which rule to apply first.

**Worked example:** Differentiate $y = (x^2 + 1)^3 e^{4x}$ with respect to x.

1. Step 1: Recognize this is a product of two functions: $u = (x^2 + 1)^3$, $v = e^{4x}$
2. Step 2: Calculate v' directly: $v' = 4e^{4x}$
3. Step 3: Calculate u' using the chain rule, since u is a composite function:

   $$u' = 3(x^2 + 1)^2 \times 2x = 6x(x^2 + 1)^2$$
4. Step 4: Substitute u, v, u', v' into the product rule formula:

   $$\frac{dy}{dx} = [6x(x^2 + 1)^2]e^{4x} + [(x^2 + 1)^3]4e^{4x}$$
5. Step 5: Factor out common terms to simplify:

   $$\frac{dy}{dx} = 2e^{4x}(x^2 + 1)^2(2x^2 + 3x + 2)$$

**Check your understanding**

1. When differentiating $y = \frac{\sin(2x)}{x e^{3x}}$, which rules do you need to use, in order?

   - 1. Product rule, then quotient rule
   - 1. Quotient rule, then product rule for the denominator derivative
   - Only quotient rule
   - Only chain rule

   *Answer:* 1. Quotient rule, then product rule for the denominator derivative

   *Why:* The expression is a quotient, so you first apply the quotient rule. To differentiate the denominator $v = x e^{3x}$, you need to use the product rule.

*Calculator:* allowed

## Common pitfalls

- **Wrong:** Swapping the order of terms in the quotient rule numerator, writing $uv' - u'v$ instead of $u'v - uv'$
  - Why it fails: Sign error leads to the negative of the correct answer, losing accuracy marks
  - Correct: Always write u'v first, then subtract uv', and double-check the order before simplifying
- **Wrong:** Forgetting to multiply by the derivative of the inner function when applying the chain rule, e.g. writing $\frac{d}{dx}[(2x + 1)^3] = 3(2x + 1)^2$ instead of multiplying by 2
  - Why it fails: Misses a key step of the chain rule, leading to an incorrect derivative
  - Correct: After adjusting the power of the composite function, always multiply by the derivative of the inner function before simplifying
- **Wrong:** Failing to label u, v, u', v' when applying product or quotient rules
  - Why it fails: Makes it harder to spot errors, and you may lose method marks if your final answer is wrong
  - Correct: Explicitly write down u, v, u', v' as your first step for every product or quotient rule question
- **Wrong:** Overcomplicating simple problems by using the quotient rule when the product rule is easier, e.g. differentiating $\frac{x}{e^{2x}}$ as quotient instead of $x \times e^{-2x}$ with product rule
  - Why it fails: Increases the chance of sign or arithmetic errors
  - Correct: For simple denominators that are powers or exponentials, rewrite as a negative power and use the product + chain rules if you find it easier

## Cheatsheet

| Rule | Formula | Recall Required? | Use Case |
| --- | --- | --- | --- |
| Product Rule | $\frac{d}{dx}(uv) = u'v + uv'$ | Yes | Product of two functions |
| Quotient Rule | $\frac{d}{dx}\left(\frac{u}{v}\right) = \frac{u'v - uv'}{v^2}$ | No (given on formula sheet) | Fraction of two functions |
| Chain Rule | $\frac{d}{dx}[f(g(x))] = f'(g(x))g'(x)$ | Yes | Composite (function of a function) |

## What's next

Now that you have mastered the three core differentiation rules for Edexcel IGCSE FPM, you are ready to apply these to practical problems including finding gradients, tangents, normals, and stationary points. These applications form a large portion of the calculus section of your exam, and often carry 5-8 mark questions that require you to combine differentiation with algebraic manipulation. You should also practice past paper questions that combine these rules with trigonometric and exponential functions to build speed and accuracy before your exam.

---

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-igcse-further-pure-math-s9-differentiation-of-products-quotients-and/
