Trapezium Rule (Strip)
Approximating area under a curve.
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
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 .
Area of One Trapezium:
Each strip forms a trapezium with parallel sides and .
Add Areas of All Strips:
Sum the trapezium areas across the interval.
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.
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
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.
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
- Calculus: Early Transcendentals by James Stewart
- Numerical Analysis by Richard L. Burden and J. Douglas Faires
- Wikipedia: Trapezoidal rule
- Chapra, Steven C., and Raymond P. Canale. Numerical Methods for Engineers. 7th ed. McGraw-Hill Education, 2015.
- Edexcel A-Level Mathematics — Pure (Numerical Methods)