# Integration (Edexcel IAL P2)

> Edexcel International A-Level Mathematics · IAL Maths P2
> Source: https://www.owlsprep.com/study/edexcel-ial-math-p2-integration/

This guide covers the three core integration skills required for Edexcel IAL P2: evaluating definite integrals, calculating areas under and between curves, and applying the trapezium rule to approximate integrals, with exam-aligned worked examples.

**Prerequisites:** [Integration of polynomial functions (Edexcel IAL P1)](https://www.owlsprep.com/study/edexcel-ial-math-p1-integration-basics/)

## Learning objectives

- Evaluate definite integrals of polynomial functions correctly
- Calculate the area under a curve and area bounded between two curves using integration
- Apply the trapezium rule to approximate definite integrals, interpret accuracy and estimate errors

## Evaluating Definite Integrals

**Definite Integral Evaluation** — To evaluate a definite integral $\int_a^b f(x) dx$, first find the antiderivative $F(x)$ of $f(x)$, then calculate $F(b) - F(a)$. The constant of integration cancels out so it is omitted for definite integrals.

Definite integrals are the foundation of all area calculation problems in P2 integration. You will be expected to show full working for substitution of limits, even if you use a calculator to verify your final answer.

**Worked example:** Evaluate the definite integral $\int_1^3 (3x^2 - 4x + 2) dx$

1. Integrate each term of the integrand with respect to $x$:

   $$F(x) = x^3 - 2x^2 + 2x$$
2. Substitute the upper limit $x=3$ into $F(x)$:

   $$F(3) = 3^3 - 2(3)^2 + 2(3) = 27 - 18 + 6 = 15$$
3. Substitute the lower limit $x=1$ into $F(x)$:

   $$F(1) = 1^3 - 2(1)^2 + 2(1) = 1 - 2 + 2 = 1$$
4. Subtract the lower limit result from the upper limit result:

   $$\int_1^3 (3x^2 -4x +2) dx = F(3) - F(1) = 15 - 1 = 14$$

> **Exam tip:** Always write the line showing $F(b) - F(a)$ explicitly in your working: this is worth 1 method mark in almost every definite integral question, even if your final answer is incorrect.

*Calculator:* allowed

## Calculating Areas Using Integration

**Area Calculation Rules** — 1. Area under a curve where $y \geq 0$ between $x=a$ and $x=b$: $A = \int_a^b f(x) dx$; 2. Area between two curves between $x=a$ and $x=b$: $A = \int_a^b (f_{upper}(x) - f_{lower}(x)) dx$

> **Negative Integral Values**
>
> If the integrand is negative for any interval between your limits, the integral will return a negative value. Always take the absolute value of integrals for regions below the x-axis to get a positive area.

**Worked example:** Find the exact area of the region bounded by the curve $y = 6x - x^2$ and the line $y = 2x$

1. Find the $x$-coordinates of the points of intersection of the two functions to get the limits of integration:

   $$6x - x^2 = 2x \implies x^2 -4x = 0 \implies x(x-4)=0 \implies x=0, x=4$$
2. Identify the upper function (quadratic) and lower function (line) between $x=0$ and $x=4$, so the integrand is upper minus lower:

   $$f_{upper} - f_{lower} = (6x - x^2) - 2x = 4x - x^2$$
3. Integrate the resulting expression:

   $$F(x) = 2x^2 - \frac{x^3}{3}$$
4. Evaluate the definite integral between $0$ and $4$:

   $$\int_0^4 (4x -x^2) dx = F(4) - F(0) = \left(2(4)^2 - \frac{4^3}{3}\right) - 0 = 32 - \frac{64}{3} = \frac{32}{3}$$
5. The exact area is $\frac{32}{3}$ square units.

> **Exam tip:** Sketch a rough labelled graph of the functions if you are unsure which is the upper function, or if the functions cross between limits to identify where you need to split your integral.

*Calculator:* allowed

## The Trapezium Rule

**Trapezium Rule** — A numerical method to approximate the value of a definite integral when an exact antiderivative cannot be found. The formula is provided in your exam booklet: $\int_a^b y dx \approx \frac{1}{2}h\left\{(y_0 + y_n) + 2(y_1 + ... + y_{n-1})\right\}$, where $h = \frac{b-a}{n}$ and $n$ is the number of strips.

Increasing the number of strips reduces the width of each trapezium, leading to a more accurate estimate. If the curve is concave up, the trapezium rule overestimates the area; if concave down, it underestimates the area.

**Worked example:** Use the trapezium rule with 4 strips to approximate $\int_0^1 (2^x + 1) dx$, giving your answer to 3 significant figures.

1. Calculate the width of each strip $h$, where $a=0$, $b=1$, $n=4$ strips:

   $$h = \frac{b-a}{n} = \frac{1-0}{4} = 0.25$$
2. Calculate the values of $y = 2^x +1$ at each $x$ value from $0$ to $1$ in increments of $0.25$:

   $$y_0 = 2^0 +1 = 2, y_1 = 2^{0.25}+1 \approx 2.1892, y_2 = 2^{0.5}+1 \approx 2.4142, y_3=2^{0.75}+1≈2.6818, y_4=2^1+1=3$$
3. Substitute into the trapezium rule formula:

   $$\int_0^1 y dx \approx 0.5h\left\{(y_0 + y_4) + 2(y_1 + y_2 + y_3)\right\}$$
4. Plug in the values:

   $$\approx 0.5 \times 0.25 \times \left\{(2+3) + 2(2.1892 + 2.4142 + 2.6818)\right\} = 0.125 \times (5 + 14.5704) = 0.125 \times 19.5704 ≈ 2.45$$
5. The approximate value of the integral is $2.45$ (3 s.f.).

> **Exam tip:** Double check that you have $n+1$ y-values for $n$ strips: a common error is missing the final $y_n$ value or counting strips as y-values.

*Calculator:* allowed

## Common pitfalls

- **Wrong:** Adding the constant of integration (+C) when evaluating definite integrals
  - Why it fails: The constant cancels out when subtracting upper and lower limits, so including it is unnecessary and can lead to arithmetic errors
  - Correct: Omit the constant of integration for all definite integral calculations
- **Wrong:** Subtracting the upper function from the lower function when calculating area between curves
  - Why it fails: This gives a negative value, even though area is always a positive quantity
  - Correct: Always subtract the lower function from the upper function, or take the absolute value of the integral result
- **Wrong:** Using the number of strips $n$ as the number of y-values in the trapezium rule
  - Why it fails: $n$ strips produce $n+1$ y-values ($y_0$ to $y_n$), so mislabeling leads to missing or extra terms in the formula
  - Correct: Count y-values as $n+1$ where $n$ is the number of strips specified in the question
- **Wrong:** Forgetting to take the absolute value of integrals where the curve dips below the x-axis
  - Why it fails: The integral of a negative function is negative, so this would incorrectly subtract area instead of adding it
  - Correct: Split the integral at x-intercepts, take the absolute value of the integral for regions where $f(x) < 0$, then sum all positive areas
- **Wrong:** Calculating $h$ as $\frac{b-a}{n+1}$ instead of $\frac{b-a}{n}$ for the trapezium rule
  - Why it fails: This gives an incorrect strip width, leading to large errors in the final approximation
  - Correct: Calculate $h$ as the width of each strip: $h = \frac{\text{upper limit} - \text{lower limit}}{\text{number of strips}}$

## Cheatsheet

| Concept | Formula/ Rule | Key Reminder |
| --- | --- | --- |
| Definite Integral Evaluation | $\int_a^b f(x) dx = F(b) - F(a)$, $F'(x) = f(x)$ | No constant of integration required; subtract lower limit result from upper limit result |
| Area Under Curve ($y \geq 0$) | $A = \int_a^b f(x) dx$ | Take absolute value of integral for regions where $f(x) < 0$ |
| Area Between Two Curves | $A = \int_a^b [f_{upper}(x) - f_{lower}(x)] dx$ | Find intersection points of curves to get limits $a$ and $b$ |
| Trapezium Rule | $\int_a^b y dx \approx \frac{1}{2}h \left\{ (y_0 + y_n) + 2(y_1 + ... + y_{n-1}) \right\}, h = \frac{b-a}{n}$ | $n$ = number of strips; more strips = higher accuracy |

## What's next

Mastering these P2 integration skills is a critical foundation for the more advanced integration techniques you will encounter in Pure Mathematics 3 (P3) and Pure Mathematics 4 (P4), including integration of trigonometric, exponential and reciprocal functions, as well as integration by substitution, parts, and partial fractions. You will also use these area calculation skills for volume of revolution problems in P4. For your upcoming P2 exam, make sure to practice past paper questions that combine integration with other P2 topics like coordinate geometry and differentiation, as these are common high-mark question types. Always show all your working to maximize method marks, even if you use a calculator to verify your final answer.

---

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-p2-integration/
