6 ms·
Sorry, is it xz + yz = x(y + z) when using operators? That seems wrong.
by nanaya 8y ago
Sorry, is it
xz + yz = x(y + z)
when using operators?
That seems wrong.
- quietbritishjim 8y agoI don't know any Lisp, but I would decode (= (* x (+ y z)) (+ (* x z) (* y z))) As x*(y + z) = x*z + y*z e.g. (+ y z) means you add y and z with highest priority.