题目
Problem
(a) Show that the equation 4x−2sinx−1=0, where x is in radians, has a root α in the
interval [0.2,0.6]
(2)
(b) Starting with the interval [0.2,0.6], use interval bisection twice to find an interval of
width 0.1 in which α lies.
(3)
题目中文翻译
(a) 证明方程 4x−2sinx−1=0(其中 x 以弧度为单位)在区间 [0.2,0.6] 内有一个根 α。
(b) 从区间 [0.2,0.6] 开始,使用区间二分法两次,求宽度为 0.1 且包含 α 的区间。
解答
(a)
解法一
思路
展开
令 f(x)=4x−2sinx−1。计算区间两端的函数值;由于 f 连续且两端函数值异号,根据介值定理,区间内至少有一个根。
答题过程
展开
Let
f(x)=4x−2sinx−1.
Then, using radians,
f(0.2)=f(0.6)=−0.5973…<0,0.2707…>0.
The function f is continuous, and f(0.2) and f(0.6) have opposite signs. Therefore, by the intermediate value theorem, there is a root α in
[0.2,0.6].
(b)
解法一
思路
展开
从 [0.2,0.6] 开始,第一次取中点 0.4,根据函数值符号把区间缩为 [0.4,0.6];第二次取中点 0.5,再次利用异号端点,把区间缩为宽度 0.1 的区间。
答题过程
展开
For the first bisection, the midpoint of [0.2,0.6] is 0.4, and
f(0.4)=−0.1788…<0.
Since f(0.4)<0 and f(0.6)>0, the root lies in [0.4,0.6].
For the second bisection, the midpoint of [0.4,0.6] is 0.5, and
f(0.5)=0.04114…>0.
Since f(0.4)<0 and f(0.5)>0,
0.4<α<0.5.
This interval has width 0.1.