If x and y are boolean variables, which one of the following is the equivalent of f=x xor y xor xy?
1) f = x xor y
2) f = x xor y xor xy
3) f = x xor y xor (x and y)
4) f = x xor y xor (x or y)