Trapezium rule

Tier: #Higher

🔗What you need to know first
How to

The trapezium rule is a method for estimating the area under a curve by splitting it into a number of trapezoids (strips).

$$\text{Area} \approx \frac{1}{2}h\left[(y_0 + y_n) + 2(y_1 + y_2 + \cdots + y_{n-1})\right]$$

where $h$ is the width of each strip and $y_0, y_1, \ldots, y_n$ are the heights (function values) at each vertical boundary.

Method:

  1. Divide the interval into $n$ equal strips of width $h$
  2. Calculate $y$-values at each boundary
  3. Apply the formula: add the first and last, then twice all the middle values

Example: Estimate $\int_0^4 x^2,dx$ using 4 strips ($h=1$, values at $x=0,1,2,3,4$: $y=0,1,4,9,16$): $$\approx \frac{1}{2}(1)\left[(0+16)+2(1+4+9)\right] = \frac{1}{2}[16+28] = 22$$

The exact answer is $\frac{64}{3} \approx 21.3$, so the approximation is an overestimate (curve is convex).

Common error: forgetting to double the middle values, or miscounting the strips.

Questions to practise

Practise these questions →

New to Bow Tie Maths? It generates questions on this topic, marks them instantly, and tracks what you've mastered. Free to sign up.

📝Past paper questions
💬What the examiners say
  • "Students should be encouraged to use trapezia to find a better estimate of the area under the curve."
  • "It was encouraging to see students using the formula for the area of a trapezium rather than splitting the trapezium into a rectangle and triangle."
⬆️How you can quickly improve
  • For each strip, use ½ × width × (left height + right height), and check whether any strip has one edge at zero — that one is a triangle and needs a different calculation.
  • If the first strip touches zero on one side, use ½ × base × height for that strip only.
  • After calculating a gradient, check whether the curve is increasing or decreasing at that point — a decreasing curve has a negative gradient.
💡Watch
ℹ️Calculator tricks

Use the TABLE function to generate $y$-values quickly for any function.