Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ignabelitzky/roots-of-equations
Implementation and usage of numerical root-finding algorithms.
https://github.com/ignabelitzky/roots-of-equations
bisection-method newtons-method python root-finding-algorithms root-finding-methods secant-method
Last synced: about 1 month ago
JSON representation
Implementation and usage of numerical root-finding algorithms.
- Host: GitHub
- URL: https://github.com/ignabelitzky/roots-of-equations
- Owner: ignabelitzky
- License: gpl-3.0
- Created: 2024-03-12T16:13:47.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-03-12T19:38:09.000Z (9 months ago)
- Last Synced: 2024-03-13T18:29:11.816Z (9 months ago)
- Topics: bisection-method, newtons-method, python, root-finding-algorithms, root-finding-methods, secant-method
- Language: Python
- Homepage:
- Size: 38.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Roots of equations
## Overwiew
This program demonstrates the implementation and usage of numerical root-finding algorithms, specifically the **bisection method**,
**Newton's method**, and **secant method**. It applies these algorithms to solve different equations and providees the results.## Requirements
- **Python 3**
- **poetry**## Getting Started
1. Clone the repository
```Bash
git clone https://www.github.com/ignabelitzky/roots-of-equations.git
cd roots-of-equations
```
2. Run the program using the Makefile
```Bash
make
```## License
This project is licensed under the [GNU General Public License v3.0](LICENSE). You can find the full text of the license here [LICENSE](LICENSE).