1. An engineer measures the velocity $v(t)$ of a vehicle at 2-second intervals as shown: $v(0) = 0$, $v(2) = 5$, $v(4) = 12$, $v(6) = 18$ (all in m/s). Using the trapezoidal rule, what is the approximate displacement over $[0, 6]$ seconds?
- A.$35$ m
- B.$52$ m
- C.$70$ m
- D.$58$ m
View Answer
Answer: $52$ m
Set up the trapezoidal rule: $\Delta t = 2$ seconds, with partition points at $t = 0, 2, 4, 6$. The trapezoidal rule gives: $T = \frac{\Delta t}{2}[v(0) + 2v(2) + 2v(4) + v(6)]$. Substitute values: $T = \frac{2}{2}[0 + 2(5) + 2(12) + 18] = 1 \cdot [0 + 10 + 24 + 18] = 52$ m. Why distractors fail: Option A ($35$) could come from a left Riemann sum: $2(0 + 5 + 12) = 34$ (close but incorrect). Option C ($70$) might result from doubling the sum incorrectly. Option D ($58$) could come from a right Riemann sum: $2(5 + 12 + 18) = 70$ — also incorrect.