题目
Problem
The continuous curve has equation .
A table of values of and for is shown below.
Use the trapezium rule with all the values of in the table to find an approximation for
giving your answer to 3 decimal places.
(3)
题目中文翻译
连续曲线 的方程为 。
下表给出了 的 和 值。
用梯形法则,使用表中所有 值,求 的近似值,答案保留3位小数。
(3分)
解答
解法一
思路
梯形法则公式:,其中 是步长, 是区间数。
答题过程
From the table, the step size is and intervals.
\int_4^5 f(x)\,\mathrm{d}x \approx&\, \frac{0.2}{2}\Big[y_0 + 2(y_1 + y_2 + y_3 + y_4 + y_5) + y_6\Big] \\[4mm] =&\, 0.1\Big[9.2 + 2(8.4556 + 3.8512 + 5.0342 + 7.8297) + 8.6\Big] \\[4mm] =&\, 0.1\Big[9.2 + 2(25.1707) + 8.6\Big] \\[4mm] =&\, 0.1\Big[9.2 + 50.3414 + 8.6\Big] \\[4mm] =&\, 0.1 \times 68.1414 \\[4mm] =&\, 6.452 \end{align*}$$ $$\boxed{6.452}$$