题目
Problem
A continuous curve has equation y=f(x).
A table of values of x and y for y=f(x) is shown below.
| x | 0.5 | 1.75 | 3 | 4.25 | 5.5 |
|---|
| y | 3.479 | 6.101 | 7.448 | 6.823 | 5.182 |
Using the trapezium rule with all the values of y in the given table,
(a) find an estimate for
∫0.55.5f(x)dx
giving your answer to one decimal place.
(3)
(b) Using your answer to part (a) and making your method clear, estimate
∫0.55.5(f(x)+4x)dx
(2)
解答
(a)
解法一
思路
展开
五个 x 值给出四个梯形,步长是 1.25。端点只算一次,中间三项乘以 2。
答题过程
展开
The strip width is
h=45.5−0.5=1.25.
Using the trapezium rule,
∫0.55.5f(x)dx==≈21.25{3.479+5.182+2(6.101+7.448+6.823)}30.87812530.9
to one decimal place.
(b)
解法一
思路
展开
积分可以拆开:∫(f(x)+4x)dx=∫f(x)dx+∫4xdx。第一个积分直接用 (a) 的结果。
答题过程
展开
Using the result from part (a),
∫0.55.5(f(x)+4x)dx====≈30.9+∫0.55.54xdx30.9+[2x2]0.55.530.9+2(5.5)2−2(0.5)230.9+6090.9.