Anybody who knows/can explain what this character means?
Meaning of the symbol $\oplus$
-1
$\begingroup$
discrete-mathematics
-
2It tells you it's the symmetric set difference. – 2017-02-26
-
6Well it's said in the text – 2017-02-26
-
1And it is encoded as `\oplus`. – 2017-02-26
2 Answers
0
This is symmetric difference:
$$A \oplus B:=(A-B) \cup (B-A).$$
It is the collection of elements in either of the sets, but not the intersection. Associativity is probably easiest using:
$$(A-B) \cup (B-A)=(A \cap B^c)\cup (A^c \cap B),$$
Where $A^c$ denotes the set theoretic complement.

