2. (D) Program to solve algebraic and transcendental equation by Newton Raphson
method.
| ||
x0=2, | ||
d=0.0001; | ||
c=0;n=1; | ||
printf('successive iterations \tx0 \tf(x0) \tf1(x0) \n'); | ||
while n==1 | ||
x2=x0; | ||
x1=x0-(f(x0)/f1(x0)); | ||
x0=x1; | ||
printf('\t%f \t%f \t%f \n',x2,f(x1),f(x1)); | ||
c=c+1; | ||
if abs (f(x0))<d | ||
break; | ||
end | ||
end | ||
printf(' the root of %i iteration is : %f',c,x0); |
2. (D) Program to solve algebraic and transcendental equation by Newton Raphson method.
Reviewed by admin
on
December 24, 2019
Rating:
No comments: