This repository contains Python implementations of various numerical analysis methods, including:
- Bisection Method
- False Position Method
- Newton's Method
- Secant Method
Each script provides a solution to finding the roots of equations using these well-known numerical techniques. You can run each script independently by providing an appropriate function and interval or initial guess.
Bisection_method.py
: Implements the Bisection method for root-finding.False_position_method.py
: Implements the False Position method.Newton_method.py
: Implements Newton's Method for root-finding.Secant_method.py
: Implements the Secant method.
- Clone or download the repository.
- Run the desired Python script.
- Provide the required inputs (function, interval, initial guesses).