Fork me on GitHub
#mathematics
<
2021-11-27
>
Kannan Ramamoorthy16:11:52

Hello, I’m looking out for Clojure libraries that could solve 2 equations (say equation of circle and a line). Is there any library that can help me with that? Feel free to post your answers https://stackoverflow.com/questions/70136623/equation-solvers-in-clojure.

Swapneil21:01:21

If you only have linear equations, you could probably use core.matrix (or a more efficient library) and LU decomposition to do it efficiently. I'm not sure how you would solve nonlinear equations like circles, though, unless you understand the algorithms enough to code it yourself.