I have found these boolean expressions based on a truth table:
- $(abc'd') + (ab'c'd) + (a'bcd') + (a'b'cd)$
(EDITED for 2))
- $(abcd') + (abc'd) + (ab'cd) + (ab'c'd') + (a'bcd) + (a'bc'd') + (a'b'c'd) + (a'b'cd')$
However, I need to simplify them. (' for complement, + for or, xy is for x and y)
$1. ~~(abc'd')+(ab'c'd) \iff ac'(bd'+b'd),$ and $(a'bcd')+ (a'b'cd) \iff a'c(bd'+b'd)$, so this yields $(ac'+a'c)(bd'+b'd) \iff (a \oplus c)(b \oplus d)$.
$2.$ Factor as in problem $1$ using $ab'$ and $a'b$, and then $ab$ and $a'b'$, and you'll end up with $(a \oplus b) \oplus (c \oplus d)$.