Mathomatic
Jump to navigation
Jump to search
About
Mathomatic is a free, general purpose computer algebra system that can symbolically solve/simplify and combine algebraic equations.
It's a small download (which includes a binary and examples), and I have found it a lot easier than the R_statistics_package for solving algebra equations.
Example:
1-> x = (a + 1) * (b + 2)
#1: x = (a + 1)*(b + 2)
1-> b
x
#1: b = ----- - 2
(a + 1)
1-> code c++
b = ((x / (a + 1.0)) - 2.0);