Students will apply limits to define integrals and how the Fundamental Theorem connects integration and differentiation.
Practice — Numerical Integration (One Problem with Immediate Solution)
Problem
A pump fills a tank with water at a rate \(R(t)\) (liters per minute), where \(t\) is in minutes. The rate is measured at the times shown:
| t (min) | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
| R(t) (L/min) | 12 | 16 | 19 | 21 | 22 | 24 | 25 | 27 | 30 |
Estimate the total volume of water added from \(t=0\) to \(t=8\) minutes using:
- (a) the Midpoint Rule with \(n=4\) equal subintervals,
- (b) the Trapezoidal Rule with \(n=4\) equal subintervals.
Solution
- Set up: The interval is \([0,8]\) with \(n=4\) subintervals, so \(\Delta t=\frac{8-0}{4}=2\). The subinterval endpoints are \(0,2,4,6,8\); their midpoints are \(1,3,5,7\).
- (a) Midpoint Rule: Use \(t=1,3,5,7\). Sum the rates: \(R(1)+R(3)+R(5)+R(7)=16+21+24+27=88\). Multiply by \(\Delta t\):
\[
\int_{0}^{8} R(t)\,dt \approx 2\cdot 88= \boxed{176\ \text{liters}}.
\]
- (b) Trapezoidal Rule: Use endpoints \(t=0,2,4,6,8\). Apply
\[
\int_{0}^{8} R(t)\,dt \approx \frac{\Delta t}{2}\Big[R(0)+2(R(2)+R(4)+R(6))+R(8)\Big].
\]
Compute inside: \(R(0)=12,\ R(2)=19,\ R(4)=22,\ R(6)=25,\ R(8)=30\). Then
\[
\frac{2}{2}\Big[12+2(19+22+25)+30\Big]=1\big[12+2\cdot 66+30\big]=12+132+30= \boxed{174\ \text{liters}}.
\]
- Interpretation: Over 8 minutes, the Midpoint estimate is \(176\) L and the Trapezoidal estimate is \(174\) L. Without the exact integral we can’t know the true value, but both methods agree closely (within 2 L), indicating a stable approximation from the sampled data.