Union Formula
The Formula
When to use: Pour both sets into one container and remove duplicates. Everything from either pile ends up in the union — this is the OR operation for sets.
Quick Example
Notation
What This Formula Means
The union of sets A and B is the set of all elements that belong to A, to B, or to both, written A \cup B.
Pour both sets into one container and remove duplicates. Everything from either pile ends up in the union — this is the OR operation for sets.
Formal View
Worked Examples
Example 1
easySolution
- 1 Recall the definition: A \cup B = \{x : x \in A \text{ or } x \in B\}. The word 'or' is inclusive — an element belongs to the union if it appears in at least one of the sets.
- 2 List all elements from A = \{1,3,5\} and B = \{2,3,4\}, including each at most once: 1 (from A), 2 (from B), 3 (in both), 4 (from B), 5 (from A).
- 3 Therefore A \cup B = \{1,2,3,4,5\}. Notice |A \cup B| = 5 = |A| + |B| - |A \cap B| = 3 + 3 - 1, confirming the inclusion-exclusion principle.
Answer
Example 2
mediumCommon Mistakes
- Confusing union (\cup) with intersection (\cap) — union includes ALL elements from both sets
- Including duplicate elements in the result — sets never have duplicates, so \{1, 2\} \cup \{2, 3\} = \{1, 2, 3\}, not \{1, 2, 2, 3\}
- Forgetting that A \cup \emptyset = A, not \emptyset
Why This Formula Matters
Union combines overlapping categories without double-counting, a tool used in probability, data analysis, and every branch of math.
Frequently Asked Questions
What is the Union formula?
The union of sets A and B is the set of all elements that belong to A, to B, or to both, written A \cup B.
How do you use the Union formula?
Pour both sets into one container and remove duplicates. Everything from either pile ends up in the union — this is the OR operation for sets.
What do the symbols mean in the Union formula?
A \cup B
Why is the Union formula important in Math?
Union combines overlapping categories without double-counting, a tool used in probability, data analysis, and every branch of math.
What do students get wrong about Union?
Union doesn't duplicate—element 2 appears once in the result.
What should I learn before the Union formula?
Before studying the Union formula, you should understand: set.