The method relies on linear interpolation, assuming that over a very small interval, a curve can be reasonably approximated by a straight line.
The area of a single trapezium with parallel vertical sides and and width is given by .
When summing trapeziums, the 'inner' boundaries are shared by two adjacent trapeziums, meaning those heights are counted twice in the total sum.
The 'outer' boundaries (the first and last heights) are only part of one trapezium each, so they are only counted once.
Step 1: Determine the strip width. Calculate . Ensure is the number of strips, not the number of points.
Step 2: Generate the x-values. Start at and add repeatedly until you reach .
Step 3: Calculate the y-values (ordinates). Substitute each -value into the function to find . It is best to organize these in a table.
Step 4: Apply the formula. Substitute the values into the general rule:
Increasing Strips: As the number of strips increases, the width decreases, and the straight-line approximation becomes closer to the actual curve, reducing the error.
Concavity Impact: The direction of the error depends on the curvature of the function. If the curve is concave down (), the rule produces an underestimate. If the curve is concave up (), it produces an overestimate.
Percentage Error: Accuracy is often measured by comparing the estimate to the exact value (if known) using the formula: .
| Feature | Trapezium Rule | Exact Integration |
|---|---|---|
| Nature | Numerical Approximation | Analytical Solution |
| Applicability | Any continuous function, even without an integral form | Only functions with known antiderivatives |
| Result | A numerical value | A precise mathematical expression or value |
| Error | Inherent (unless the function is linear) | Zero error |
Check your Calculator Mode: If the function involves trigonometry, ensure your calculator is in Radians unless specified otherwise.
Rounding Precision: Keep intermediate -values to a higher degree of accuracy (e.g., 5 or 6 decimal places) than the final answer requires to avoid rounding accumulation errors.
The '2' Factor: A common mistake is forgetting that only the middle ordinates are multiplied by 2. Always double-check the brackets in your formula.
Sanity Check: Look at the graph of the function. If the curve is clearly bending upwards, your answer should be slightly larger than the true area.