\( y=[1,4,7,10], h=1. Find area. \)
The trapezium rule is a method to estimate the area under a curve by approximating the region with trapezia instead of rectangles. The formula is:
\[ A \approx \frac{h}{2} \Big[ y_0 + y_n + 2(y_1 + y_2 + \cdots + y_{n-1}) \Big] \]
Here, \(h\) is the interval width and \(y_0, y_1, \dots, y_n\) are the values of the function at equally spaced points.
This formula is used whenever you’re asked to estimate an area under a curve (integration) and exact integration is not required or possible. Exam questions often say “Use the trapezium rule with n strips”.
The trapezium rule is a practical way to estimate areas under curves. By averaging top and bottom of each strip and summing, the formula \(\frac{h}{2}[y_0+y_n+2(y_1+\dots+y_{n-1})]\) emerges. It’s widely used in GCSE and A-level mathematics for numerical integration.