Problem 965. False position (linear interpolation) method of finding a root.
Solution Stats
Problem Comments
-
3 Comments
A link to the "false position method" can be placed in the Challenge description.
The syntax is .
I found the algorithm at http://math.fullerton.edu/mathews/n2003/regulafalsi/RegulaFalsiProof.pdf
will create a link with a name. Spaces before the < and after the > are needed.
The idea of the method is that the lower and upper bounds for x define a line. Wherever this line crosses the x-axis becomes our new estimate for the root (1st iteration is like the secant method). https://en.wikipedia.org/wiki/Regula_falsi
This problem needs more test cases.
Solution Comments
-
2 Comments
You need to add more test cases...Thanks.
Added couple of test cases, more will be added soon or later
Problem Recent Solvers18
Suggested Problems
-
Find all elements less than 0 or greater than 10 and replace them with NaN
14602 Solvers
-
Find the alphabetic word product
2874 Solvers
-
Determine if a Given Number is a Triangle Number
352 Solvers
-
315 Solvers
-
Side of an equilateral triangle
4787 Solvers
More from this Author17
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!