Union

A merge operation between between 2 Sets.

Represented by the \cup symbol (\cup in LaTeX).

Example (using Listing Method:

A={a,b,c}A = \{a, b, c\} B={c,d,e}B = \{c, d, e\} AB={a,b,c,d,e}A \cup B = \{a, b, c, d, e\}

  • It's a Commutative Operation: AB=BAA \cup B = B \cup A
  • It's an Associativity Operation: A(BC)=(AB)CA \cup (B \cup C) = (A \cup B) \cup C
  • Identity Properties: A=AA \cup \emptyset = A
  • Complement Properties: AAA \cup A'

See also Intersection