MathematicsNumerical MethodsA-Level
AQAIBEdexcelAbiturAPBaccalauréat GénéralBachilleratoCambridge

Trapezium Rule (Strip)

Approximating area under a curve.

Understand the formulaSee the free derivationOpen the full walkthrough

This public page keeps the free explanation visible and leaves premium worked solving, advanced walkthroughs, and saved study tools inside the app.

Core idea

Overview

The Trapezium Rule provides a linear approximation for the area under a curve by treating a single interval as a trapezoid. It essentially calculates the product of the interval width and the arithmetic mean of the two boundary heights.

When to use: Use this method when you need to estimate a definite integral for data sets where only discrete points are known. It is most effective when the interval width is small or the function behaves relatively linearly across the chosen segment.

Why it matters: This rule is fundamental in numerical analysis and engineering for calculating total values from rate data, such as finding distance from velocity or energy from power. It provides a simple yet effective way to process sensor data in real-time computing environments.

Symbols

Variables

A = Strip Area, h = Width, y_0 = Left Height, y_1 = Right Height

Strip Area
Width
Left Height
Right Height

Walkthrough

Derivation

Derivation of the Trapezium Rule Formula

The trapezium rule approximates area under a curve by splitting the interval into trapezia and summing their areas.

  • Interval [a,b] is split into n equal strips of width h.
  • Ordinates are .
1

Area of One Trapezium:

Each strip forms a trapezium with parallel sides and .

2

Add Areas of All Strips:

Sum the trapezium areas across the interval.

3

Collect Like Terms:

Interior ordinates are counted twice because each is shared by two trapezia.

Result

Source: Edexcel A-Level Mathematics — Pure (Numerical Methods)

Visual intuition

Graph

The graph is a linear function where the strip area increases proportionally with the height of the ordinates. Since the formula represents a constant width multiplied by the average of two values, the plot of area against the sum of the ordinates forms a straight line passing through the origin.

Graph type: linear

Why it behaves this way

Intuition

Imagine slicing the area under a curve into narrow vertical strips, then replacing the curved top of each strip with a straight line connecting the function values at its boundaries, forming a simple trapezoid.

A
The approximated area under the curve within a single interval.
This is the desired total quantity being estimated by the rule.
h
The width of the interval or 'strip' along the x-axis.
It defines how wide the segment is that we are approximating.
The function value (height) at the left boundary of the interval.
One of the two heights defining the parallel sides of the trapezoid.
The function value (height) at the right boundary of the interval.
The other height defining the parallel sides of the trapezoid.
The arithmetic mean of the function values at the interval boundaries.
Represents the average height of the trapezoid, which, when multiplied by the width 'h', gives its area.

Signs and relationships

  • /2: The division by 2 is a fundamental part of the area formula for a trapezoid, representing the averaging of the two parallel sides (y0 and y1) before multiplying by the height (h).
  • +: The addition combines the lengths of the two parallel sides (y0 and y1) to facilitate their averaging in the trapezoid area formula.

Free study cues

Insight

Canonical usage

The units of the approximated area are determined by the product of the units of the interval width and the function values, ensuring dimensional consistency.

Common confusion

A common mistake is incorrectly assuming the resulting area will always have units of length squared, rather than recognizing that the units are derived from the specific physical quantities represented by the

Unit systems

unit of independent variable (e.g., m, s) · Represents the width of the interval along the independent axis. Its unit defines one dimension of the area.
unit of dependent variable (e.g., m, m/s) · Represents the function value (height) at the start of the interval. Its unit defines the other dimension of the area.
unit of dependent variable (e.g., m, m/s) · Represents the function value (height) at the end of the interval. Must have the same unit as y_0.
product of units of h and y (e.g., m^2, m) · The approximated area will have units consistent with the product of the independent variable's unit and the dependent variable's unit.

One free problem

Practice Problem

A surveyor measures the depth of a river at two points 4 meters apart. The depth at the first point is 1.5 meters and at the second point is 2.2 meters. Estimate the cross-sectional area of this strip of the river.

Width4
Left Height1.5
Right Height2.2

Solve for:

Hint: Multiply half the width by the sum of the two depths.

The full worked solution stays in the interactive walkthrough.

Where it shows up

Real-World Context

Area of a lake from map measurements.

Study smarter

Tips

  • Ensure the width h is the horizontal distance between y0 and y1.
  • Check if the curve is concave; this determines if your result is an over or under-estimate.
  • The result is exact for linear functions (first-degree polynomials).

Avoid these traps

Common Mistakes

  • Wrong h measurement.
  • Counting endpoints twice.

Common questions

Frequently Asked Questions

The trapezium rule approximates area under a curve by splitting the interval into trapezia and summing their areas.

Use this method when you need to estimate a definite integral for data sets where only discrete points are known. It is most effective when the interval width is small or the function behaves relatively linearly across the chosen segment.

This rule is fundamental in numerical analysis and engineering for calculating total values from rate data, such as finding distance from velocity or energy from power. It provides a simple yet effective way to process sensor data in real-time computing environments.

Wrong h measurement. Counting endpoints twice.

Area of a lake from map measurements.

Ensure the width h is the horizontal distance between y0 and y1. Check if the curve is concave; this determines if your result is an over or under-estimate. The result is exact for linear functions (first-degree polynomials).

References

Sources

  1. Calculus: Early Transcendentals by James Stewart
  2. Numerical Analysis by Richard L. Burden and J. Douglas Faires
  3. Wikipedia: Trapezoidal rule
  4. Chapra, Steven C., and Raymond P. Canale. Numerical Methods for Engineers. 7th ed. McGraw-Hill Education, 2015.
  5. Edexcel A-Level Mathematics — Pure (Numerical Methods)