Skip to content

Commit 59415cf

Browse files
authored
Update README.md
1 parent 0494e93 commit 59415cf

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

README.md

+20
Original file line numberDiff line numberDiff line change
@@ -1 +1,21 @@
11
# ComputerV1
2+
3+
### A program that solves a polynomial second or lower degree equation, without the use of special math libraries.
4+
**Output shows:**
5+
* The equation in its reduced form.
6+
* The degree of the equation.
7+
* The solution.
8+
9+
### Requirments
10+
Python 3.8
11+
regex module:
12+
```pip install regex```
13+
14+
### Usage
15+
* Terms are rational numbers or respect the from 'a * X[^p]'.
16+
* In the case of 'X^1', simply 'X' can be used.
17+
* Examples:
18+
- ```./computer "5 * X^0 + 4 * X^1 - 9.3 * X^2 = 1 * X^0"```
19+
- ```./computer "5 + 4 * X + X^2 = X^2"```
20+
21+
**Note**: Work in progress...

0 commit comments

Comments
 (0)