Labs ICT
โญ Pro Login

Set Theory

Understand sets, subsets, power sets, and set notation.

What Is a Set?

A set is a well-defined collection of distinct objects, called elements or members. Sets are one of the most fundamental concepts in mathematics.

Notation:
  {1, 2, 3}        - Set enumeration
  {x | x > 0}      - Set builder notation
  |A|               - Cardinality (size) of set A
  a โˆˆ A             - "a is an element of A"
  a โˆ‰ A             - "a is not an element of A"

Types of Sets

Empty Set (โˆ…):    The set with no elements: {}
Universal Set (U): The set of all elements under consideration
Singleton Set:     A set with exactly one element: {a}
Finite Set:        A set with a limited number of elements
Infinite Set:      A set with unlimited elements (e.g., โ„•, โ„ค)

Subsets

A set A is a subset of B (written A โІ B) if every element of A is also an element of B. Every set is a subset of itself, and the empty set is a subset of every set.

A โІ B  iff  โˆ€x (x โˆˆ A โ†’ x โˆˆ B)
A โŠ‚ B  (A is a proper subset of B: A โІ B and A โ‰  B)

Power Set: P(A) = the set of all subsets of A
If |A| = n, then |P(A)| = 2โฟ

๐Ÿงช Quick Quiz

What is the power set of {a, b}?