Understanding how $\mathcal{P}(A)$ is a Boolean algebra

1.5k Views Asked by At

I'm currently doing work on discrete mathematics in my free time and am having some difficulties with understanding Boolean algebra. To be specific, I'm stuck on the following practice question:

Let $A = \{a, b\}$ and list the four elements of the power set $\mathcal{P}(A)$. We consider the operation $+$ to be $\cup$, $\cdot$ to be $\cap$, and complement to be set complement. Consider $1$ to be $A$ and $0$ to be $∅$.

  1. Explain why the description above defines a Boolean algebra.
  2. Find two elements $x$, $y$ in $\mathcal{P}(A)$ such that $xy = 0$, $x \neq 0$ and $y \neq 0$.

Starting with the power set: $$\mathcal{P}(A) = \{∅, \{a\},\{b\},\{a,b\}\}.$$

How would I go about finding the elements of $x$ and $y$ to satisfy part two of the question using algebraic axioms? Also, for explaining how the above defines a Boolean algebra, do you think it would suffice to simply mention how there are two binary operations and a set associated with the Boolean algebra?

2

There are 2 best solutions below

5
On

Let $x=\{a\}$ and $y=\{b\}$. We have $x\ne\emptyset$ and $y\ne\emptyset$. We also have $xy=x\cap y=\{a\}\cap\{b\}=\emptyset=0$, so that seems to work.

A boolean algebra has variables that can only be true or false (or $1$ or $0$). Normal algebraic operations can continue as usual, unless of course they don't work.

0
On

A boolean algebra is any set together with two binary operation $\land$ and $\lor$, one unary operation $\lnot$ and two nullary operations $0$ and $1$ (that is, two constants) satisfying a suitable set of axioms - see, for instance, the definition section from the Wikipedia article.

The simplest boolean algebra is the already mentioned two element set $\{0,1\}$ together with the traditional truth table operations, but - as you seem to know already - any set $S$ gives rise to a boolean algebra defined on its power set $\mathcal{P}(S)$: just define $\land, \lor, \lnot, 0$ and $1$ to be $\cap, \cup, S\setminus, \emptyset$ and $S$ respectively ($S\setminus$ means complement with relation to $S$).

As for proving that something is indeed a boolean algebra, there's no free lunch. You must check that the definitions you give for the boolean operations satisfy the axioms. So besides mentioning that there are two binary operations, you must be sure to have them properly defined so that anyone can understand what you take them to be. Also you must define the other operations as well and verify that the axioms hold for them.

For instance, one axiom says that:

$a \land \lnot a = 0$

To show that your particular instance of boolean algebra satisfies this axiom, you must show that:

$a \cap (S\setminus a) = \emptyset$.