Closed q2apro closed 4 years ago
I tried to solve:
sol = nerdamer.solveEquations('2*a^(2)+4*a*6=128'); console.log(sol.toString());
which gives `""``. The same with:
var sol = nerdamer('solve(2*a^(2)+4*a*6=128, a)'); console.log(sol.toString());
What is the problem? The dev console does not throw an error.
But using x instead of a works:
x
a
nerdamer.solveEquations('2*x^(2)+4*x*6=128').toString(); nerdamer('solve(2*x^(2)+4*x*6=128, x)').toString()
@q2apro, fixed on the dev branch.
I tried to solve:
which gives `""``. The same with:
What is the problem? The dev console does not throw an error.
But using
x
instead ofa
works: