Adding elements of one set to another, only the union is intuitively suitable to be considered as the set addition. The empty set
plays the role of zero. Indeed, for every set A, A
=
A=A.
The union is clearly associative. However, it's impossible to find a set (-A) such that A
(-A)=
if A itself is not empty. This is because
the union of two sets is a superset of each operand.

There is one additional set operation that is worth paying attention to:
- Symmetric Difference: x
A^B iff either x
A or x
B but x
A
B
There are several ways to define this operation:
- A^B=(A
B) - (A
B)
- A^B=(A-B)
(B-A)
The latter is obviously suggestive of the name's origin. A nice feature of this operation is that, for any set A,
A^A=
so that A=-A, and if symmetric difference satisfies the rest of the conditions,
it may be legitimately called a "set addition". Clearly A^
=
^A=A. Also, the operation is commutative by definition.
It's a good exercise to check that it's also associative.
Symmetric difference is reminiscent of the XOR operation defined for Boolean Algebras. So that the latter
may be considered as addition defined for Boolean Algebras.

Copyright © 1996-2008 Alexander Bogomolny