The union of two sets brings together all the elements from both sets without any duplicates. Think of it as combining two groups into one bigger group that contains every unique member from both.
The sets being united
An element
Element x is in set A
Element x is in set B
If A={1,2,3} and B={3,4,5}, then A∪B={1,2,3,4,5}
Combining data sets, merging lists, unifying groups
Intersection Of Sets
Formula:
A∩B={x∣x∈Aandx∈B}
The intersection of two sets includes only the elements that are present in both sets. It's like finding common friends between two people.
The difference between two sets A and B consists of elements that are in A but not in B. It's like removing certain items from your collection.
The sets involved
An element
Element x is in set A
Element x is not in set B
If A={1,2,3,4} and B={3,4,5}, then A∖B={1,2}
Excluding items, filtering data, subtracting groups
Complement Of A Set
Formula:
A′=U∖A={x∣x∈Uandx∈/A}
The complement of a set includes everything that's not in the set, relative to a universal set U. It's like considering all the things you're not choosing.
The set you're taking the complement of
The universal set containing all possible elements
An element
Element x is not in set A
Element x is in the universal set U
If U={1,2,3,4,5} and A={2,3}, then A′={1,4,5}
Finding what is excluded, logical negation, probability of the opposite event
Cartesian Product
Formula:
A×B={(a,b)∣a∈A,b∈B}
The Cartesian product pairs every element of set A with every element of set B, forming ordered pairs. Imagine creating all possible combinations between two lists.
The sets being combined
An ordered pair with a from A and b from B
Element a is in set A
Element b is in set B
If A={1,2} and B={x,y}, then A×B={(1,x),(1,y),(2,x),(2,y)}
The order in which you unite two sets doesn't matter; you'll end up with the same set. It's like mixing two ingredients together—the result is the same no matter the order.
The sets being united
If A={apple,banana} and B={banana,cherry}, then A∪B={apple,banana,cherry}=B∪A
Simplifying set expressions, proving set identities
Commutative Law Of Intersection
Formula:
A∩B=B∩A
The order in which you find the common elements between two sets doesn't matter. It's like checking shared interests between two people; the overlap is the same regardless of who you start with.
The sets being intersected
If A={red,blue} and B={blue,green}, then A∩B={blue}=B∩A
Simplifying calculations, proving properties of sets
Associative Law Of Union
Formula:
(A∪B)∪C=A∪(B∪C)
When uniting multiple sets, the grouping doesn't affect the result. It's like grouping ingredients differently when mixing; the final mix is the same.
The sets being united
If A={1}, B={2}, C={3}, then (A∪B)∪C=A∪(B∪C)={1,2,3}
Rearranging expressions for simplification, computational efficiency
Associative Law Of Intersection
Formula:
(A∩B)∩C=A∩(B∩C)
When finding common elements among multiple sets, how you group them doesn't change the outcome. It's like narrowing down shared interests among friends; the sequence doesn't matter.
The sets being intersected
If A={1,2}, B={2,3}, C={2,4}, then (A∩B)∩C=A∩(B∩C)={2}
Intersecting a set with the union of two sets is the same as uniting the intersections of the set with each of the two sets individually. It's like finding common items after combining two lists separately.
The sets involved
If A={1,2,3}, B={3,4}, C={3,5}, then A∩(B∪C)={3} and (A∩B)∪(A∩C)={3}
Simplifying expressions, solving set equations
Distributive Law Of Union Over Intersection
Formula:
A∪(B∩C)=(A∪B)∩(A∪C)
Uniting a set with the intersection of two sets is the same as intersecting the unions of the set with each of the two sets individually. It's like combining your list with shared items of others, or finding common ground after including all possibilities.
The sets involved
If A={1}, B={1,2}, C={1,3}, then A∪(B∩C)={1} and (A∪B)∩(A∪C)={1,2,3}∩{1,3}={1,3}
Rewriting expressions for easier computation, logical reasoning
Identity Law Of Union
Formula:
A∪∅=A
Uniting any set with the empty set doesn't change the original set. It's like adding nothing to a group; the group stays the same.
Any set
The empty set
If A={1,2}, then A∪∅={1,2}
Simplifying expressions, understanding the role of the empty set
Identity Law Of Intersection
Formula:
A∩U=A
Intersecting any set with the universal set leaves the original set unchanged. It's like comparing your collection to everything possible; only your items matter.
Any set
The universal set
If A={1,2} and U contains all numbers, then A∩U={1,2}
Simplifying expressions, theoretical foundations
Idempotent Law Of Union
Formula:
A∪A=A
Uniting a set with itself doesn't change it. It's like combining a group with itself; nothing new is added.
The complement of the union of two sets is the intersection of their complements. It's like saying everything that's not in either set is what's not in A and not in B.
Sets involved
Complements of A and B
If U={1,2,3,4}, A={1,2}, B={2,3}, then (A∪B)′={4} and A′∩B′={4}
The complement of the intersection of two sets is the union of their complements. It's like everything not shared between A and B is everything not in A or not in B.
Sets involved
Complements of A and B
If U={1,2,3,4}, A={1,2}, B={2,3}, then (A∩B)′={1,3,4} and A′∪B′={1,3,4}
Logical negations, simplifying expressions in probability and logic
Cardinality
Cardinality Of A Set
Formula:
∣A∣=n
The cardinality of a set is the number of elements it contains. It's like counting how many items are in your collection.
The set
Number of elements in set A
A non-negative integer
If A={a,b,c}, then ∣A∣=3
Measuring set sizes, comparing quantities, finite mathematics
Cardinality Of Union Of Two Sets
Formula:
∣A∪B∣=∣A∣+∣B∣−∣A∩B∣
When combining two sets, the total number of unique elements is the sum of their sizes minus the number of elements they share. This avoids double-counting shared elements.
To find the total number of unique elements across three sets, we add their sizes, subtract the sizes of all pairwise intersections to correct for double-counting, and then add back the size of the triple intersection to correct for elements subtracted too many times.
Sets being united
Cardinalities of the sets
Sizes of pairwise intersections
Size of the intersection of all three sets
If ∣A∣=10, ∣B∣=15, ∣C∣=20, ∣A∩B∣=5, ∣A∩C∣=4, ∣B∩C∣=6, and ∣A∩B∩C∣=2, then ∣A∪B∪C∣=10+15+20−5−4−6+2=32
Complex probability calculations, overlapping group analysis, database queries
Power Set
Cardinality Of Power Set
Formula:
∣P(A)∣=2∣A∣
The power set of A includes all possible subsets of A, and its size is 2 raised to the number of elements in A. It's like calculating all possible combinations of items you can select from your collection.
If every element of A is in B, and every element of B is in C, then every element of A must also be in C. It's like a chain of containment.
Sets involved
Symbol meaning 'is a subset of'
If A={1}, B={1,2}, and C={1,2,3}, then A⊆C
Logical deductions, hierarchical classifications
Empty Set Is A Subset Of Every Set
Formula:
∅⊆A
The empty set is considered a subset of any set because there are no elements in it that could possibly violate the subset condition. It's like an empty container fitting into any space.
Two sets are equal if and only if they have exactly the same elements. It's like saying two collections are the same if everything in one is also in the other and vice versa.