I have to create my own function to solve equations (first and second degree). Assuming you have any input equation, how can I do to bring everything to the first side of the equation?
Example. I have:
eq=3*x+2==-2*x^2+4
but I'd like to have:
eq=2*x^2+3*x-2==0
Thanks.
(Subtract @@ eq) == 0should work. – J. M.'s missing motivation May 10 '16 at 12:03