Concept | Symbol/Notation | Explanation |
---|---|---|
Enumerative Set Notation | {1, 2, 3}, {a, b, c} | Lists all elements of a set within curly braces. |
Enumerative Set with Ellipsis | {1, 2, 3, ...}, {a, b, c, d, ...} | Lists some elements and uses '...' to indicate continuation, useful for large or infinite sets. |
Descriptive Set Notation | {x | x is a positive even number} | Defines a set by specifying a condition that elements must satisfy. |
Empty Set | β , {} | Represents a set with no elements. |
Belongs to | β | 'x β A' means 'x' is an element of set 'A'. |
Does not belong to | β | 'y β B' means 'y' is not an element of set 'B'. |
Subset | β | 'A β B' means 'A' is a subset of 'B', meaning all elements of 'A' are in 'B'. |
Proper Subset | β | 'A β B' means 'A' is a proper subset of 'B', meaning 'A' is a subset of 'B' but not equal to 'B'. |
Superset | β | 'B β A' means 'B' is a superset of 'A', meaning all elements of 'A' are in 'B'. |
Proper Superset | β | 'B β A' means 'B' is a proper superset of 'A', meaning 'B' contains all elements of 'A' but is not equal to 'A'. |
Concept | Notation | Explanation | Examples |
---|---|---|---|
Cardinality | |A|, card(A) | The size or number of elements in a set | |A| = 3 for A = {1, 2, 3}, |B| = 4 for B = {1, 'apple', 3.14, True} |
Finite Sets | Regular Set Notation (enumerative or descriptive) | Sets with a countable number of elements | {Monday, ..., Sunday}, {A, ..., Z} |
Infinite Sets | Regular Set Notation (enumerative or descriptive) | Sets with an uncountable number of elements | {x | x is a positive even number}, {1, 2, 3, ...} |
Empty Set | β or {} | A set containing no elements | β , {} |
Universal Set | U or ΞΎ | Set containing all objects within a specific context | U = {Monday, ..., Sunday} for days of the week, U = {A, ..., Z} for English alphabet |
Concept | Notation | Explanation | Examples |
---|---|---|---|
Equality of Sets | = | Two sets are equal if they contain exactly the same elements. | A = {1, 2, 3}, B = {3, 1, 2}; A = B |
Inequality of Sets | β | Two sets are unequal if at least one element is different between the sets. | A = {1, 2, 3}, C = {4, 5, 6}; A β C |
Basic Subsets | β | A subset is a set where every element of the subset is also an element of another set. | A = {1, 2}, B = {1, 2, 3, 4}; A β B |
Proper Subsets | β | A proper subset of a set is not equal to the original set, containing fewer elements. | A = {1, 2}, B = {1, 2, 3, 4}; A β B |
Basic Supersets | β | A superset includes every element of another set. | A = {1, 2, 3, 4}, B = {1, 2}; A β B |
Proper Supersets | β | A proper superset contains all elements of the subset plus additional elements. | A = {1, 2, 3, 4}, B = {1, 2}; A β B |
Disjoint Sets | N/A | Two sets are disjoint if they have no elements in common. | A = {1, 2, 3}, C = {4, 5, 6}; A and C are disjoint |
Complement | Ac | The set of all elements not in the given set, relative to a universal set. | U = {1, 2, 3, 4, 5}, A = {1, 2, 3}; Ac = {4, 5} |
Concept | Notation | Explanation | Examples |
---|---|---|---|
Intersection | A β© B | The set of elements that are common to both sets A and B. | If A = {1, 2, 3, 4} and B = {3, 4, 5, 6}, then A β© B = {3, 4}. |
Union | A βͺ B | The set of all elements that are in either set A or set B, or in both. | If A = {1, 2, 3} and B = {4, 5, 3}, then A βͺ B = {1, 2, 3, 4, 5}. |
Difference | A - B | The set of elements that are in set A but not in set B. | If A = {1, 2, 3, 4} and B = {3, 4, 5, 6}, then A - B = {1, 2}. |
Symmetric Difference | A Ξ B | The set of elements that are in either of the sets A or B, but not in both. | If A = {1, 2, 3} and B = {3, 4, 5}, then A Ξ B = {1, 2, 4, 5}. |