We will be using regular falsi combined with newton raphson and bisection method to find the root .It is beneficial in two ways as
1.It can be used to test/verify the roots obtained by step by step solver
2. It can be used to find the roots of transcendental equation
Example:
find_root(expression,lower bound,upper bound,decimal place precission)
find_root(cos(x)-x*e^x,0,1,4)
Answer=0.5177
We will be using regular falsi combined with newton raphson and bisection method to find the root .It is beneficial in two ways as
1.It can be used to test/verify the roots obtained by step by step solver
2. It can be used to find the roots of transcendental equation
Example:
find_root(expression,lower bound,upper bound,decimal place precission)
find_root(cos(x)-x*e^x,0,1,4)
Answer=0.5177