数学高一必修三问题 求高手搭救 紧急
发布网友
发布时间:2022-05-06 04:34
我来回答
共2个回答
热心网友
时间:2022-06-28 17:54
我通过直到型循环语句来设置该算法如下:
input “区间端点和精确度”;a,b,e
Do
x=(a+b)/2
y1=(a^3)\6+(a^2)\2+a-2
y=(x^3)\6+(x^2)\2+x-2
if y=0 then
print “方程的根为”;x
else
if y * y1 <0 then
b=x
else
a=x
endif
endif
m=abs(a-b)
loop until y=0 or m<e
print “方程的根为”;x
end
热心网友
时间:2022-06-28 17:55
如果把这个方程设为f(x),对f(x)求导数,判别式小于0,则这个函数在[1,2]上是一个递增的函数,可以用折半查找的方法求它的近似解