The union of two sets includes all elements from both:
A = {1, 2, 3}, B = {3, 4, 5}
A ∪ B = {1, 2, 3, 4, 5}
Includes only elements common to both sets:
A ∩ B = {3}
Removes elements of one set from another:
A − B = {1, 2}
B − A = {4, 5}
Show how complements interact with union and intersection:
(A ∪ B)ᶜ = Aᶜ ∩ Bᶜ
(A ∩ B)ᶜ = Aᶜ ∪ Bᶜ
Creates ordered pairs from elements in two sets:
A = {x, y}, B = {1, 2}
A × B = {(x,1), (x,2), (y,1), (y,2)}
A = {1, 2, 3}, B = {3, 2, 1}
A = B
Order does not affect equality.
A = {x, y, z}, B = {1, 2, 3}
|A| = |B| → A ≈ B
Same number of elements implies equivalence.
A set is closed under an operation if applying the operation yields a result in the same set:
Set | Symbol | Properties |
---|---|---|
Natural Numbers | ℕ | {0, 1, 2, 3, ...}; closed under + and × |
Integers | ℤ | {..., −2, −1, 0, 1, 2, ...}; closed under +, −, × |
Rational Numbers | ℚ | Includes fractions; closed under all four operations |
Irrational Numbers | ℚᶜ | Non-repeating decimals like √2, π |
Real Numbers | ℝ | Includes all above: ℕ, ℤ, ℚ, ℚᶜ |
Set theory underpins many mathematical and computational concepts. By understanding fundamental operations, properties like closure and equality, and the structure of numerical sets, learners gain insight into logic, algebra, and data modeling that applies across disciplines.