C program to find the value using Newton Raphson | C Programming

C program to find the value using Newton Raphson

Before starting with the program let us learn something about Newton Raphson Method

Newton Raphson Method is open method and starts with one initial guess for finding real root of non-linear equations. In other Words, Newton Raphson method, also called the Newton’s method, is the fastest and simplest approach of all methods to find the real root of a nonlinear function. It is an open bracket approach, requiring only one initial guess. This method is quite often used to improve the results obtained from other iterative approaches




C program to find the value using Newton Raphson

#include<stdio.h>
#include <math.h>
#include<conio.h>
#define EST 0.05
#define F(x) 4*(x)*(x)*(x) - 2*(x) - 6
#define F1(x) 12*(x)*(x) - 2
int main()
{
int i = 1;
float xl;
double f1,fm,f0,error;
printf("\nEnter the value of x0: "); scanf("%f",&xl);
printf("\n__________________________________________________________________\n"); 
printf("\niteration\tx0\tf0\t f1\t fm\t error"); 
printf("\n___________________________________________________________________\n");
do
{
f0=F(xl); f1=F1(xl); fm=xl-(f0/f1);
error=(fabs((fm-xl)/fm));
printf("\n %d \t%.2lf\t %.2lf\t %.2lf\t %.4lf \t %.4lf", i,xl,f0,f1,fm,error);
if(error>EST)
{
 xl=fm; f0=F(xl); f1=F1(xl); fm=xl-(f0/f1);
error=(fabs((fm-xl)/fm));
i++;
printf("\n %d \t%.2lf\t %.2lf\t %.2lf\t %.4lf \t %.4lf", i,xl,f0,f1,fm,error); 
} 
else 
{ 
printf("\n__________________________________________________________\n"); 
printf("\n\nApp.root = %f",fm);
}
}while(error>EST);
return 0;
}


Comments

Popular posts from this blog

C Program for SCAN Disk Scheduling Algorithm | C Programming

C program to Find Cartesian Product of Two Sets | C programming

C Program To Check The String Is Valid Identifier Or Not | C Programming