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

created recipes for efivar and efibootmgr
author Hans-G?nter Theisgen
date Tue Sep 01 10:09:15 2020 +0100 (2020-09-01)
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 ```