
Numerical Integration: The Trapezium Rule
Use the trapezium rule to find an approximate value for a definite integral, and understand how the number of strips used affects the accuracy of the approximation.
TL;DR:How can we find the area of complex shapes when standard integration isn't possible? This topic introduces the trapezium rule, a powerful numerical tool for approximating the area under any curve.
About This Topic
The Trapezium Rule is a fundamental component of the A-Level Mathematics curriculum, introducing students to the concept of numerical integration. It serves as a practical method for approximating the value of a definite integral, which is particularly useful when the function cannot be integrated analytically or when the function is only known through a set of discrete data points. The topic builds directly upon students' understanding of definite integration as the 'area under a curve' and their knowledge of basic geometric shapes. By partitioning the area into a series of trapezia, students can derive a formula that provides a surprisingly accurate estimate.
The core of this topic lies not just in the application of the formula, but in understanding its limitations and the factors that influence its accuracy. Students will explore the relationship between the number of strips (or trapezia) used and the precision of the resulting approximation, leading to the intuitive conclusion that more strips yield a better result. Furthermore, a deeper analysis of the curve's concavity allows students to predict whether their approximation is an over-estimate (for curves that are concave up) or an under-estimate (for curves that are concave down). This develops critical thinking and connects the graphical properties of a function to the behaviour of a numerical algorithm, providing a solid foundation for more advanced numerical methods they may encounter in higher education.
Key Questions
- Explain how the trapezium rule uses a series of trapezia to approximate the area under a curve.
- Analyse the concavity of a curve to determine whether the trapezium rule will produce an over-estimate or an under-estimate of the integral.
- Evaluate the effect of doubling the number of strips on the accuracy of the approximation.
Learning Objectives
- Derive the trapezium rule formula from the sum of the areas of individual trapezia.
- Apply the trapezium rule to find an approximate value for a definite integral.
- Analyse the concavity of a function's graph to determine whether the approximation is an over-estimate or an under-estimate.
- Evaluate how increasing the number of strips affects the accuracy of the approximation.
- Calculate the percentage error of an approximation where the exact value of the integral is known.
Key Vocabulary
| Numerical Integration | The process of finding an approximate value for a definite integral using numerical methods. |
| Trapezium Rule | A method for approximating a definite integral by dividing the area under the curve into a series of trapezia. |
| Ordinate | The y-coordinate of a point on a plane. In this context, the y-values of the function at specific x-values. |
| Strip | One of the vertical slices of the area under the curve, which is approximated as a trapezium. |
| Strip Width (h) | The uniform width of each strip along the x-axis, calculated as (b-a)/n. |
| Concavity | The direction in which a curve bends. A curve is 'concave up' if it opens upwards and 'concave down' if it opens downwards. |
Watch Out for These Misconceptions
Common MisconceptionThe strip width 'h' is one of the y-values or 'heights' of the trapezium.
What to Teach Instead
'h' is the width of each strip along the x-axis. It is calculated as (b-a)/n, where [a, b] is the integration interval and n is the number of strips. The parallel sides of the trapezia are the y-values (ordinates).
Common MisconceptionAll the y-values (ordinates) in the formula are treated equally, often by just adding them all up and multiplying by h.
What to Teach Instead
The formula gives a different weighting to the ordinates. The first (y₀) and the last (yₙ) are used only once, but all the intermediate ordinates (y₁ to yₙ₋₁) are doubled because they form a side for two adjacent trapezia.
Common MisconceptionForgetting the ½ at the start of the formula.
What to Teach Instead
The formula is derived from the area of a trapezium, which is ½(sum of parallel sides) × height. This ½ factor must be included in the final formula for the sum of all the trapezia.
Common MisconceptionConfusing the number of strips with the number of ordinates.
What to Teach Instead
To create 'n' strips, you need 'n+1' ordinates (or y-values). For example, 4 strips require 5 ordinates (y₀, y₁, y₂, y₃, y₄).
Active Learning Ideas
See all activities→Collaborative Problem-Solving
Graph Paper Approximation
Students are given a known function, such as y = x² + 1, and are asked to plot it on graph paper. They then physically draw a set number of trapezia of equal width underneath the curve and calculate the total area by summing the area of each one, reinforcing the geometric origin of the rule.
Collaborative Problem-Solving
Spreadsheet Investigation
Students create a spreadsheet to implement the trapezium rule. This allows them to easily change the number of strips (n) and instantly see the effect on the approximation's accuracy compared to the known analytical solution.
Collaborative Problem-Solving
Over or Under? Card Sort
Students work in small groups with a set of cards showing different curves (concave up, concave down, linear, mixed). They must sort them into categories: 'over-estimate', 'under-estimate', or 'exact', and justify their reasoning based on the shape of the curve.
Real-World Connections
- Calculating the area of a piece of land with an irregular boundary, such as a river, using survey measurements taken at regular intervals.
- In engineering, estimating the cross-sectional area of a river or the volume of earth to be moved for a road cutting from a series of depth measurements.
- In physics, determining the total distance travelled by an object by finding the area under a velocity-time graph, especially when velocity is given as a set of data points.
- In medicine, calculating the total exposure to a drug over time (Area Under the Curve or AUC) from blood concentration samples, which is a key measure in pharmacokinetics.
Assessment Ideas
Ask students to use mini-whiteboards to calculate the value of 'h' and list the required x-ordinates for a given integral and number of strips. This checks the initial setup before the main calculation.
An exam-style question that requires students to use the trapezium rule with a given number of strips, state with a reason whether the answer is an over- or under-estimate, and then use a more accurate estimate to calculate the percentage error.
Provide a worksheet with problems that have worked solutions on the back. Students can attempt the problems and then check their own work, identifying where they may have made errors in the process.
Frequently Asked Questions
Why do we need to approximate integrals when we can just calculate the exact value?
How do I know if the trapezium rule will give an over-estimate or an under-estimate?
Does using more strips always make the answer better?
What is the difference between an 'ordinate' and a 'strip'?
Planning templates for Mathematics
5E Model
The 5E Model structures lessons through five phases (Engage, Explore, Explain, Elaborate, and Evaluate), guiding students from curiosity to deep understanding through inquiry-based learning.
Unit PlannerMath Unit
Plan a multi-week math unit with conceptual coherence: from building number sense and procedural fluency to applying skills in context and developing mathematical reasoning across a connected sequence of lessons.
RubricMath Rubric
Build a math rubric that assesses problem-solving, mathematical reasoning, and communication alongside procedural accuracy, giving students feedback on how they think, not just whether they got the right answer.
More in Numerical Methods
Locating Roots of Equations
Understand that roots of f(x) = 0 are the x-intercepts of the graph y = f(x). Learn to locate roots by looking for a change of sign of the function f(x) over an interval.
8 methodologies
Iteration and Fixed Point Iteration
Learn to solve equations of the form f(x) = 0 by rearranging them into the form x = g(x) and using an iterative formula x(n+1) = g(x(n)) to find a root.
8 methodologies
Conditions for Convergence of Iteration
Investigate the conditions under which an iterative process of the form x(n+1) = g(x(n)) will converge to a root, specifically relating to the derivative g'(x).
8 methodologies
The Newton-Raphson Method
Learn and apply the Newton-Raphson method, an iterative process that uses tangents to the curve to find successively better approximations to a root of f(x) = 0.
8 methodologies
Applications and Limitations of Numerical Methods
Apply numerical methods to solve problems in various contexts and understand their limitations, including issues of accuracy, convergence, and computational efficiency.
8 methodologies