Using the variables x and y list all the Boolean functions o
Using the variables x and y, list all the Boolean functions on two variables in disjunctive normal form.
Solution
disjunctive normal form says that
every boolean expression can be written as union of all individual functions as OR operator;
X XOR Y = (((not X) and Y) or (X and (not Y)))
This is disjunctive normal form.
