jiggzson / nerdamer

a symbolic math expression evaluator for javascript
http://www.nerdamer.com
MIT License
514 stars 82 forks source link

Another solve issue #655

Open markhats opened 2 years ago

markhats commented 2 years ago

Hello

Just trying to do:

solve(x+y+sqrt(x*y)=19, y)

and I get the result:

[]

I think it should be:

[1/2*(sqrt(76*x-3*x^2)-x+38), 1/2*(-sqrt(76*x-3*x^2)-x+38)]

Thanks.