wok-next view mathomatic/description.txt @ rev 21338

OpenSSL 1.0.2t -> 1.0.2u: overflow bug CVE-2019-1551
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Dec 21 08:55:46 2019 +0000 (2019-12-21)
parents
children
line source
1 Mathomaticâ„¢ is a free and open source command-line computer algebra system (CAS)
2 for doing floating point calculations and symbolic mathematics. It can
3 automatically solve, simplify, combine, and compare algebraic equations, do some
4 calculus, etc.
6 ```
7 1-> x^2 + 4x - 21 = 0
9 #1: x^2 + (4*x) - 21 = 0
11 1-> solve x
12 Equation is a degree 2 polynomial equation in x.
13 Equation was solved with the quadratic formula.
14 Solve successful:
16 #1: x = -(2 + (5*sign))
18 1-> calculate
19 There are 2 solutions.
21 Solution number 1 with sign = 1:
22 x = -7
24 Solution number 2 with sign = -1:
25 x = 3
26 1->
27 ```