for some reason I get<p><pre><code> "([True,True],fromList [('x',1.7500000780766642),('y',-0.24999969839074443)])"
</code></pre>
when i run<p><pre><code> print $ show $ solveSystem
[ ((2 * x) + (3 * y)) * (x - y) === 2
, (3 * x) + y === 5 ]
$ Map.fromList [('x', 0),('y', 0)]
</code></pre>
which doesn't match the suggested solutions.. using this code: <a href="https://gist.github.com/80e982016a267b1f2e48" rel="nofollow">https://gist.github.com/80e982016a267b1f2e48</a><p>* edit - lowering the precedence of === fixed it