Addition of Sets
Sometimes in order to add one has to take the difference.
Yes, that's true provided the difference is symmetric.
Several operations are customarily defined for general sets - union, intersection, difference:
- Union: x∈A∪B iff either x∈A or x∈B
- Intersection: x∈A∩B iff x∈A and x∈B
- Difference: x∈A-B iff x∈A and x∉B
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,
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,
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.
What Can Be Added?
- What Is Addition?
- Addition of Chains
- Addition of Equations
- Addition of Functions
- Addition of Numbers
- Addition of Sets
- Addition of Shapes
- Addition of Spaces
- Addition of Strings
- Addition of Vectors
|Contact| |Front page| |Contents| |Up|
Copyright © 1996-2018 Alexander Bogomolny71945581