用二分法求方程式X3-X-1=0在区间【1,1.5】内的近似解 这题如何解啊

 我来答
yubinghd
2010-07-23
知道答主
回答量:13
采纳率:0%
帮助的人:6.2万
展开全部
是x^3-x-1=0么????令函数y=x^3-x-1然后分别求x=1和x=1.5时的y是大于0还是小于0,再求x=1.25时的y是大于0还是小于0,经计算可知x=1,y<0,x=1.5,y>0,x=1.25,y<0.所以锁定区间在【1.25,1.5】求【1.25,1.5】平均值为1.375,再x=1.375的y>0再锁定区间为【1.25,1.375】再求平均值,反正区间的两边y要一正一负。一直求下去~~~

好啦~~~给个好评~~~
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
wacs5
2010-07-21 · TA获得超过1.6万个赞
知道大有可为答主
回答量:3724
采纳率:82%
帮助的人:2821万
展开全部
#include <stdio.h>
#include <stdlib.h>
#include <iostream.h>

#define EPS 1e-6
#define DELTA 1e-6

int main()
{
float x;
float a,b;
float f(float);
float Bisection(float,float,float(*f)(float));

a=1;
b=1.5;
x=Bisection(a,b,f);

system("pause");
return 0;
}

/**********以上是main的范畴**************/
float Bisection( float a,float b,float (*f)(float) )
{
float c,fc,fa=f(a),fb=f(b);
int n=1;
cout<<"二分次数\tc\tf(c)\n";
while(1)
{
if( fa*fb>0 )
return 0;
c =(a+b)/2,fc =f(c);
if( fabs(fc) < DELTA )
break;
else if (fa*fc<0)
{
b=c;
fb=fc;
}
else
{
a=c;
fa=fc;
}
if( b-a< EPS )
break;
cout<<'\t'<<n++<<'\t'<<c<<'\t'<<fc<<endl;
}
return c;
}

float f(float x)
{
return x*x*x-x-1; //求解的方程
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
毛晨检正雅
2020-05-18 · TA获得超过3581个赞
知道大有可为答主
回答量:3089
采纳率:26%
帮助的人:210万
展开全部
#include
<stdio.h>
#include
<stdlib.h>
#include
<iostream.h>
#define
EPS
1e-6
#define
DELTA
1e-6
int
main()
{
float
x;
float
a,b;
float
f(float);
float
Bisection(float,float,float(*f)(float));
a=1;
b=1.5;
x=Bisection(a,b,f);
system("pause");
return
0;
}
/**********以上是main的范畴**************/
float
Bisection(
float
a,float
b,float
(*f)(float)
)
{
float
c,fc,fa=f(a),fb=f(b);
int
n=1;
cout<<"二分次数
c
f(c)
";
while(1)
{
if(
fa*fb>0
)
return
0;
c
=(a+b)/2,fc
=f(c);
if(
fabs(fc)
<
DELTA
)
break;
else
if
(fa*fc<0)
{
b=c;
fb=fc;
}
else
{
a=c;
fa=fc;
}
if(
b-a<
EPS
)
break;
cout<<'
'<<n++<<'
'<<c<<'
'<<fc<<endl;
}
return
c;
}
float
f(float
x)
{
return
x*x*x-x-1;
//求解的方程
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
闵君汗梦凡
2019-12-21 · TA获得超过3710个赞
知道大有可为答主
回答量:3077
采纳率:29%
帮助的人:193万
展开全部
#include
<stdio.h>
#include
<stdlib.h>
#include
<iostream.h>
#define
EPS
1e-6
#define
DELTA
1e-6
int
main()
{
float
x;
float
a,b;
float
f(float);
float
Bisection(float,float,float(*f)(float));
a=1;
b=1.5;
x=Bisection(a,b,f);
system("pause");
return
0;
}
/**********以上是main的范畴**************/
float
Bisection(
float
a,float
b,float
(*f)(float)
)
{
float
c,fc,fa=f(a),fb=f(b);
int
n=1;
cout<<"二分次数
c
f(c)
";
while(1)
{
if(
fa*fb>0
)
return
0;
c
=(a+b)/2,fc
=f(c);
if(
fabs(fc)
<
DELTA
)
break;
else
if
(fa*fc<0)
{
b=c;
fb=fc;
}
else
{
a=c;
fa=fc;
}
if(
b-a<
EPS
)
break;
cout<<'
'<<n++<<'
'<<c<<'
'<<fc<<endl;
}
return
c;
}
float
f(float
x)
{
return
x*x*x-x-1;
//求解的方程
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
甲妞威骊蓉
2019-09-06 · TA获得超过3975个赞
知道大有可为答主
回答量:3164
采纳率:27%
帮助的人:228万
展开全部
#include
<stdio.h>
#include
<stdlib.h>
#include
<iostream.h>
#define
EPS
1e-6
#define
DELTA
1e-6
int
main()
{
float
x;
float
a,b;
float
f(float);
float
Bisection(float,float,float(*f)(float));
a=1;
b=1.5;
x=Bisection(a,b,f);
system("pause");
return
0;
}
/**********上main范畴**************/
float
Bisection(
float
a,float
b,float
(*f)(float)
)
{
float
c,fc,fa=f(a),fb=f(b);
int
n=1;
cout<<"二分次数\tc\tf(c)\n";
while(1)
{
if(
fa*fb>0
)
return
0;
c
=(a+b)/2,fc
=f(c);
if(
fabs(fc)
<
DELTA
)
break;
else
if
(fa*fc<0)
{
b=c;
fb=fc;
}
else
{
a=c;
fa=fc;
}
if(
b-a<
EPS
)
break;
cout<<'\t'<<n++<<'\t'<<c<<'\t'<<fc<<endl;
}
return
c;
}
float
f(float
x)
{
return
x*x*x-x-1;
//求解
方程
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(5)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式