clojure-numerics / expresso

Clojure library for symbolic computation
312 stars 20 forks source link

Showing steps to achieved result #33

Open dmarjenburgh opened 4 years ago

dmarjenburgh commented 4 years ago

Is it possible to see which rules have been applied in order to solve/simplify an expression? For example, what steps were taken in:

(solve 'x '(= (+ (* x x) (* -5 x) 6) 0))
; => #{3 2}