Enter bounds, tolerance, and iterations for robust solving. Review approximations with error tracking and charts. Export clean reports for homework, verification, and decision support.
This tool applies the false position method to estimate a root of a nonlinear equation using a bracketing interval, detailed iteration output, accuracy controls, exports, and a function graph.
| Function | Lower Bound | Upper Bound | Error Tolerance (%) | Function Tolerance | Approximate Root |
|---|---|---|---|---|---|
| x^3 + 4*x^2 - 10 | 1 | 2 | 0.001 | 0.000001 | 1.36523 |
| cos(x) - x | 0 | 1 | 0.001 | 0.000001 | 0.73909 |
| exp(-x) - x | 0 | 1 | 0.001 | 0.000001 | 0.56714 |
xr = (xl * f(xu) - xu * f(xl)) / (f(xu) - f(xl))
ea = |(xr,new - xr,old) / xr,new| × 100
f(xl) * f(xr) < 0, the root remains in [xl, xr].f(xl) * f(xr) > 0, the root remains in [xr, xu].f(xr) = 0, the exact root has been found.
x.It is a bracketing root-finding method. It draws a straight line through two points on the function and uses the x-axis intercept as the next approximation.
Use it when you know a root lies between two values and the function changes sign across that interval. It is especially useful for nonlinear equations.
The method depends on opposite signs at the endpoints. Without a sign change, the algorithm cannot guarantee that a root lies inside the interval.
It measures how much the newest estimate differs from the previous one. Smaller values usually mean the method is stabilizing near the root.
A small approximate error alone may not guarantee that the function value is close to zero. Function tolerance adds a second convergence check.
You can use expressions such as x^3-4*x+1, sin(x), exp(-x)-x, sqrt(x)-2, and log(x)-1.
Regula Falsi may keep one endpoint fixed for many iterations. That can slow progress when the function shape is unbalanced near the root.
The CSV file stores the numerical iteration data. The PDF export summarizes the result and includes the iteration table for reporting or review.
Important Note: All the Calculators listed in this site are for educational purpose only and we do not guarentee the accuracy of results. Please do consult with other sources as well.