Notes
Categories

Union of Sets in Discrete Mathematics [ English ]

< Prev Next >

1. Introduction

In set theory, one of the most fundamental operations is the union of sets. It is used to combine elements from multiple sets into a single set.

The union operation is widely applied in:


2. Definition of Union

The union of two sets A and B is the set of all elements that belong to A, or B, or both.

Formal Definition:

A ∪ B = { x | x ∈ A or x ∈ B }

3. Symbol and Meaning


4. Example of Union

Let:

A = {1, 2, 3}
B = {3, 4, 5}

Then:

A ∪ B = {1, 2, 3, 4, 5}

✔ Note:


5. Example with Disjoint Sets

A = {1, 2}
B = {3, 4}
A ∪ B = {1, 2, 3, 4}

✔ Since sets are disjoint, all elements are simply combined


6. Properties of Union


(a) Commutative Law

A ∪ B = B ∪ A

(b) Associative Law

(A ∪ B) ∪ C = A ∪ (B ∪ C)

(c) Identity Law

A ∪ ∅ = A

(d) Idempotent Law

A ∪ A = A

(e) Domination Law

A ∪ U = U

Where U is the universal set.


7. Union with Complement

A ∪ A' = U

✔ Union of a set and its complement gives the universal set


8. Cardinality of Union

Number of elements in union:

n(A ∪ B) = n(A) + n(B) − n(A ∩ B)

Example

A = {1, 2, 3}
B = {3, 4}
n(A ∪ B) = 3 + 2 − 1 = 4

9. Applications of Union

(a) Mathematics

(b) Computer Science

(c) Real-Life


10. Key Observations


11. Summary

< Prev Next >