https://github.com/amatofrancesco99/solving-second-degree-polynomial-equations
We all had to solve a second-degree equation at least once, but maybe it would be more convenient to have something that does it automatically...
https://github.com/amatofrancesco99/solving-second-degree-polynomial-equations
cpp math polynomials
Last synced: over 1 year ago
JSON representation
We all had to solve a second-degree equation at least once, but maybe it would be more convenient to have something that does it automatically...
- Host: GitHub
- URL: https://github.com/amatofrancesco99/solving-second-degree-polynomial-equations
- Owner: Amatofrancesco99
- Created: 2021-04-03T13:17:28.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-04-06T10:37:15.000Z (over 5 years ago)
- Last Synced: 2025-01-23T03:44:36.647Z (over 1 year ago)
- Topics: cpp, math, polynomials
- Language: C++
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Solving-Second-Degree-Polynomial-Equations
We all had to solve a second-degree equation at least once, but maybe it would be more convenient to have something that does it automatically. My program was written on this purpose, for those who are too lazy.
***
*Math principles to solve thos kind of polynomial equations:* https://en.wikipedia.org/wiki/Quadratic_equation

***