'x + y' and 'y + x' are equivalent. ... 'x - y' and 'y - x' are not equivalent. ... 'x - y' and 'x-y' are equivalent. ... 'x * (y + z)' and 'x*y + x*z' are equivalent. ... 'x * (y + z)' and 'z * x + y * x' are equivalent. ... 'x / (y + z)' and 'x/y + x/z' are not equivalent. ... '(x + y) * (x + y)' and 'x^2 + 2*x*y + y^2' are equivalent. ... '(x + y) * (x - y)' and 'x^2 + y^2' are not equivalent. ... '(x + y) * (x - y)' and 'x^2 - y^2' are equivalent.