-1
$\begingroup$

Anybody who knows/can explain what this character means?

enter image description here

  • 2
    It tells you it's the symmetric set difference.2017-02-26
  • 6
    Well it's said in the text2017-02-26
  • 1
    And it is encoded as `\oplus`.2017-02-26

2 Answers 2

2

enter image description hereThe symbol is symmetric set difference,
$A \oplus B = (A-B) \cup (B-A)$.
The red colour portion shows the symmetric difference.

  • 0
    What does $\ominus$ and $\otimes$ mean ?2017-02-26
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.