Featured Post

Step Wise Project Planning

Planning is the most difficult process in project management. The framework described is called the Stepwise method to help to distinguis...

To Find out the root of the Algebraic And Transcendental equations using Regula-Falsi Method

To Find out the root of the Algebraic And Transcendental equations using Regula-Falsi Method

#include<stdio.h>
#include<conio.h>
#include<math.h>

float f(float x)
{
return cos(x)-x*exp(x);
}
void regula(float*x,float x0,float x1,float fx0,float fx1,int*itr)
{
*x=x0-((x1-x0)/(fx1-fx0))*fx0,
++(*itr);
printf("Iteration no. %3d x=%7.5f  \n",*itr,*x);
}
main()
{
int itr=0,maxitr;
float x0,x1,x2,x3,aerr;
clrscr();
printf("Enter the value of x0,x1,allowed error,maxium iterations \n");
scanf("%f%f%f%d",&x0,&x1,&aerr,&maxitr);
regula(&x2,x0,x1,f(x0),f(x1),&itr);
do
{
if(f(x0)*f(x2)<0)
x1=x2;
else
x0=x2;
regula(&x3,x0,x1,f(x0),f(x1),&itr);
if(fabs(x3-x2)<aerr)
{
printf("After %d iterations,root=%6.4f  \n",itr,x3);
return 0;
}
x2=x3;
}
while(itr<maxitr);
printf("Solution does not converge,iterations not sufficient");
return 1;
}
Output



Regula Falsi Method


Previous
Next Post »