We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0494e93 commit 59415cfCopy full SHA for 59415cf
README.md
@@ -1 +1,21 @@
1
# 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