Simpson's Rule (Single Strip)
Estimate the area under a curve using a parabola.
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
Simpson's Rule is a numerical integration technique that approximates the area under a curve by fitting a quadratic parabola through three evenly spaced points. It belongs to the Newton-Cotes formulas and provides a more accurate estimation than the Trapezoidal Rule for functions that are reasonably smooth.
When to use: Apply this rule when you need to calculate the definite integral of a function using discrete data points or when the antiderivative is difficult to find. It requires three points (the start, midpoint, and end) spanning two equal sub-intervals of width 'h'.
Why it matters: This rule is a fundamental tool in engineering and physics for approximating work, fluid pressure, and centers of mass from experimental data. It strikes a balance between computational simplicity and high-order accuracy, making it a standard algorithm in scientific software.
Symbols
Variables
h = Step Size, y_0 = First Height, y_1 = Mid Height, y_2 = Last Height, A = Area
Walkthrough
Derivation
Understanding Simpson's Rule
Simpson’s rule approximates an integral by fitting parabolas through points, typically giving higher accuracy than the trapezium rule for smooth curves.
- The interval is split into an even number of strips n.
- Strip width is .
Single Parabolic Arch (Two Strips):
This weighting integrates a quadratic exactly when the curve is a parabola through the three points.
Extend Across the Whole Interval:
Add the parabolic-arch contributions: endpoints counted once, odd ordinates weighted 4, even ordinates weighted 2.
Result
Source: Edexcel Further Mathematics — Core Pure (Numerical Methods)
Visual intuition
Graph
The graph represents a quadratic relationship where the area A is a parabolic function of the independent variable. Because the formula calculates the area under a curve using a quadratic approximation, the resulting plot forms a parabola that accounts for the curvature of the function over the interval.
Graph type: parabolic
Why it behaves this way
Intuition
Imagine fitting a smooth parabolic arc through three points on a curve - the start, middle, and end - and then calculating the area under that specific parabola as an estimate for the actual area under the original
Signs and relationships
- h/3: The division by 3 is a weighting factor derived from the integration of the quadratic polynomial used to approximate the curve. It ensures the correct scaling of the area based on the interval width 'h'.
- 4y_1: The midpoint function value () is weighted four times more heavily than the endpoints (, ). This higher weighting reflects its greater influence on the curvature of the approximating parabola and its central
Free study cues
Insight
Canonical usage
The unit of the approximated area or integral value (A) is the product of the unit of the interval width (h) and the unit of the function values ().
Common confusion
Students may use inconsistent units for `h` and ``, leading to an incorrect or non-standard unit for the approximated area `A`.
Unit systems
One free problem
Practice Problem
A civil engineer measures the depth of a river cross-section at three points spaced 6 meters apart. The recorded depths are 2 meters, 5 meters, and 2 meters. Calculate the approximate area of the cross-section using Simpson's Rule.
Solve for:
Hint: Plug the values directly into the formula A ≈ (h/3)(y0 + 4y1 + y2).
The full worked solution stays in the interactive walkthrough.
Where it shows up
Real-World Context
Naval architecture (ship stability).
Study smarter
Tips
- Ensure the interval width 'h' is constant between the three y-coordinates.
- The coefficient for the middle coordinate (y1) is always 4, while the endpoints are 1.
- Remember that 'h' is half the total width of the area being measured.
Avoid these traps
Common Mistakes
- Using h/2 instead of h/3.
- Weights order.
Common questions
Frequently Asked Questions
Simpson’s rule approximates an integral by fitting parabolas through points, typically giving higher accuracy than the trapezium rule for smooth curves.
Apply this rule when you need to calculate the definite integral of a function using discrete data points or when the antiderivative is difficult to find. It requires three points (the start, midpoint, and end) spanning two equal sub-intervals of width 'h'.
This rule is a fundamental tool in engineering and physics for approximating work, fluid pressure, and centers of mass from experimental data. It strikes a balance between computational simplicity and high-order accuracy, making it a standard algorithm in scientific software.
Using h/2 instead of h/3. Weights order.
Naval architecture (ship stability).
Ensure the interval width 'h' is constant between the three y-coordinates. The coefficient for the middle coordinate (y1) is always 4, while the endpoints are 1. Remember that 'h' is half the total width of the area being measured.
References
Sources
- Wikipedia: Simpson's rule
- Atkins' Physical Chemistry
- Bird, Stewart, Lightfoot (Transport Phenomena)
- Halliday, Resnick, Walker (Fundamentals of Physics)
- Incropera, DeWitt, Bergman, Lavine (Fundamentals of Heat and Mass Transfer)
- Chapra, Steven C., and Raymond P. Canale. Numerical Methods for Engineers. 7th ed. McGraw-Hill, 2015.
- Incropera, Frank P., et al. Fundamentals of Heat and Mass Transfer. 7th ed. John Wiley & Sons, 2011.
- Atkins, Peter, and Julio de Paula. Atkins' Physical Chemistry. 10th ed. Oxford University Press, 2014.