Question: Create C code that finds the root of an equation by using the Newton-Raphson Method f(x)= x b - a where a and b are
Create C code that finds the root of an equation by using the Newton-Raphson Method
f(x)= xb - a
where a and b are inputted by the user. Please select appropriate thresholds. Print the results to the screen.
Pseudo Code:
1) pick x1 and x2 such that f(x1) * f(x2)<0
2) assign x3= (x1+x2)/2
3)check f(x1)*f(x3)<0
if true x2=x3
else x1=x3
4)check |x1=x3|< epsilon or f(x1)*f(x2)=0
5)profit
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
