Is there any standard Java API for solving Linear expressions with one variable as following example:
- x*1/40+5 = 12.45
- x*635/(27*1024) = 52
- x^2-3.4/6 = 43
- 3+logx-13 = 15
I tried to solve it with Apache Common Math
library but the Matrix and cramer's method are for Biliear and trilinear equations.