Comprehensive exploration of Sets, Union, Intersection, Complement, and Set Operations
Set: A collection of distinct objects
Element: An object in a set (a ∈ A)
Empty Set: ∅ = {} (contains no elements)
Universal Set: U (contains all elements under consideration)
Subset: A ⊆ B (all elements of A are in B)
Set Operations:
Perform operations on two sets:
Check relationships between sets and elements:
Analyze set relationships and cardinalities:
Given: A = {1,2,3}, B = {3,4,5}
Find: A ∪ B
Solution: Combine all elements, no duplicates
Answer: A ∪ B = {1,2,3,4,5}
Given: A = {1,2,3,4}, B = {3,4,5,6}
Find: A ∩ B
Solution: Elements common to both sets
Answer: A ∩ B = {3,4}
Given: U = {1,2,3,4,5}, A = {1,3,5}
Find: A'
Solution: Elements in U but not in A
Answer: A' = {2,4}
Law: (A ∪ B)' = A' ∩ B'
Given: A = {1,2}, B = {2,3}, U = {1,2,3,4}
Left side: (A ∪ B)' = {1,2,3}' = {4}
Right side: A' ∩ B' = {3,4} ∩ {1,4} = {4}
Verified: Both sides equal {4} ✓