Bisection Method
A simple method that repeatedly divides an interval containing a root into two subintervals.
Fixed-Point Iteration
An iterative method that finds the point where a given function intersects the identity function.
Newton Method
A fast-converging method that uses linear approximation and the function's derivative to find the root.
Secant Method
An iterative method that approximates the root using secant lines without requiring the function's derivative.
False Position
Combining the Bisection method and the Secant method to find the root, ensuring fast convergence.