Solve polynomial of maximum degree 2
`$> node computor "[polynomial]"` `[-+][a[*]]x[^n]` `node computor "x^3 - 5x^2 + 12 = -2x^3 - 2*3x^2 + 3x^3 + 12x^0"` *Reduced form: 1 * X^2 = 0 Polynomial degree: 2`node computor "3x = 2"` *
The solution is: 2 / 3
node computor "-2x^2 + x = -1"
𝚫 = 9 Solutions are: -1 / 2 1
node computor "x^3 + x = 0"
The polynomial degree is stricly greater than 2, I can't solve.
node computor "-2x^2 + x = -1"
+---+-----------------------------------------+ | X | -∞ -1/2 1 +∞ | +---+-----------------------------------------+ | Y | - 0 + 0 - | +---+-----------------------------------------+
`node computor "-2x^2 + x = -1"` *Canonical form: -2(X - 1)² - 9 / 8