How to Use
Set up the integral:
- Function: Choose from presets
- Bounds: a and b
- Subdivisions: n trapezoids
Error Analysis
- Error = O(h²) — doubles n, cuts error by 4
- Exact for linear functions
- Simpson: O(h⁴) — much more accurate
Composite Formula
Split [a,b] into n equal parts. Each trapezoid has width h. Interior points are counted twice (shared edges). End points counted once.
Step-by-Step Instructions
- 1Select a function.
- 2Set lower bound a.
- 3Set upper bound b.
- 4Choose number of subdivisions.
- 5Compare with Simpson's rule.