upgrade
upgrade

Intro to the Theory of Sets

Set Notation Symbols

Study smarter with Fiveable

Get study guides, practice questions, and cheatsheets for all your subjects. Join 500,000+ students with a 96% pass rate.

Get Started

Why This Matters

Set notation is the language of modern mathematics—it's how mathematicians communicate precisely about collections, relationships, and operations. When you're working through proofs, defining functions, or analyzing mathematical structures, you'll use these symbols constantly. The theory of sets underpins nearly every branch of mathematics, from algebra and analysis to topology and logic, so fluency with this notation isn't optional—it's foundational.

Here's the key insight: these symbols fall into distinct categories based on what they do. Some describe membership (is this element in the set?), others describe relationships between sets (is one set contained in another?), and still others define operations (how do we combine sets?). Don't just memorize the symbols—understand which category each belongs to and how they work together in mathematical arguments.


Membership Symbols

These symbols answer the most basic question in set theory: does this element belong to this set? Membership is the fundamental relationship that defines what a set actually contains.

∈ (Element of)

  • Indicates membership—the object on the left is contained in the set on the right
  • Read as "is an element of" or "belongs to"; for example, if A={1,2,3}A = \{1, 2, 3\}, then 2A2 \in A
  • Foundation of all set theory—every other concept builds on this basic membership relation

∉ (Not an element of)

  • Indicates non-membership—the object is explicitly excluded from the set
  • Negation of ∈; using the same example, 4A4 \notin A because 4 is not in {1,2,3}\{1, 2, 3\}
  • Essential for proofs by contradiction—showing something doesn't belong is often as important as showing it does

Compare: \in vs. \notin—both address the same question (membership) but give opposite answers. In proofs, you'll often need to show xAx \in A for some cases and xAx \notin A for others to establish set boundaries.


Set Relationship Symbols

These symbols describe how entire sets relate to each other. Is one set contained within another? Are they equal? Understanding these relationships is crucial for working with set hierarchies and proving set equalities.

⊆ (Subset)

  • Every element of the left set is also in the right set—allows for the possibility that both sets are equal
  • Formal definition: ABA \subseteq B means if xAx \in A, then xBx \in B
  • Includes equality—note that AAA \subseteq A is always true for any set (every set is a subset of itself)

⊂ (Proper Subset)

  • Subset but not equal—the right set must contain at least one element not in the left set
  • Stricter than ⊆; if A={1,2}A = \{1, 2\} and B={1,2,3}B = \{1, 2, 3\}, then ABA \subset B but A⊄AA \not\subset A
  • Key distinction for proofs—when you need to show sets are genuinely different in size or content

∅ or {} (Empty Set)

  • The unique set containing no elements—serves as the "zero" of set theory
  • Subset of every setA\emptyset \subseteq A is true for any set AA (this is vacuously true)
  • Critical in proofs—often appears when intersections yield no common elements or when conditions are impossible to satisfy

Compare: \subseteq vs. \subset—both indicate containment, but \subseteq allows equality while \subset excludes it. Be careful: some textbooks use \subset to mean what others write as \subseteq. Always check your course's convention.


Set Operations

These symbols define how to build new sets from existing ones. Operations take one or more sets as input and produce a new set as output—this is where set theory becomes a powerful tool for mathematical reasoning.

∪ (Union)

  • Combines all elements from both sets—an element is in ABA \cup B if it's in AA OR in BB (or both)
  • Example: {1,2}{2,3}={1,2,3}\{1, 2\} \cup \{2, 3\} = \{1, 2, 3\}—duplicates appear only once
  • Corresponds to logical OR—this connection to logic makes union fundamental in mathematical reasoning

∩ (Intersection)

  • Contains only elements common to both sets—an element is in ABA \cap B if it's in AA AND in BB
  • Example: {1,2}{2,3}={2}\{1, 2\} \cap \{2, 3\} = \{2\}—only shared elements survive
  • Corresponds to logical AND—when AB=A \cap B = \emptyset, the sets are called disjoint

\ (Set Difference)

  • Elements in the first set but not the second—also written as ABA - B in some texts
  • Example: {1,2}{2,3}={1}\{1, 2\} \setminus \{2, 3\} = \{1\}—removes everything that appears in the second set
  • Not symmetric—unlike union and intersection, ABBAA \setminus B \neq B \setminus A in general

× (Cartesian Product)

  • Creates ordered pairs from two sets—every element of the first set paired with every element of the second
  • Example: {1,2}×{x,y}={(1,x),(1,y),(2,x),(2,y)}\{1, 2\} \times \{x, y\} = \{(1, x), (1, y), (2, x), (2, y)\}—order matters in these pairs
  • Foundation for relations and functions—a function from AA to BB is technically a subset of A×BA \times B

Compare: \cup vs. \cap—union grows your set (includes everything from both), while intersection shrinks it (keeps only overlap). If asked to prove ABABA \cap B \subseteq A \cup B, this is always true—can you see why?

℘ or P (Power Set)

  • The set of all subsets of a given set—includes \emptyset and the set itself
  • Size formula: if A=n|A| = n, then P(A)=2n|\mathcal{P}(A)| = 2^n—this grows exponentially
  • Example: P({1,2})={,{1},{2},{1,2}}\mathcal{P}(\{1, 2\}) = \{\emptyset, \{1\}, \{2\}, \{1, 2\}\}—four subsets from a two-element set

Compare: Set difference vs. Cartesian product—difference removes elements (output is simpler), while Cartesian product creates pairs (output is more complex). Both are non-commutative: order of operands matters.


Standard Number Sets

These symbols represent the fundamental number systems in mathematics. Each set builds on the previous one, creating a nested hierarchy that extends from basic counting to complex analysis.

ℕ (Natural Numbers)

  • The counting numbers—typically {1,2,3,...}\{1, 2, 3, ...\}, though some definitions include 0
  • Closed under addition and multiplication—adding or multiplying naturals always gives a natural
  • Foundation of arithmetic—the most basic infinite set, used in induction proofs and counting arguments

ℤ (Integers)

  • Natural numbers plus zero and negatives{...,2,1,0,1,2,...}\{..., -2, -1, 0, 1, 2, ...\}
  • Closed under subtraction—unlike N\mathbb{N}, you can subtract any integer from another and stay in Z\mathbb{Z}
  • The "Z" comes from German Zahlen—meaning "numbers"

ℚ (Rational Numbers)

  • All fractions of integers—numbers expressible as pq\frac{p}{q} where p,qZp, q \in \mathbb{Z} and q0q \neq 0
  • Closed under division (except by zero)—includes terminating and repeating decimals
  • Dense in the reals—between any two rationals, there's another rational

ℝ (Real Numbers)

  • All points on the number line—rationals plus irrationals like 2\sqrt{2} and π\pi
  • Complete—every convergent sequence of reals has a real limit (this is the key property)
  • Foundation for calculus—continuity and limits require the completeness of R\mathbb{R}

ℂ (Complex Numbers)

  • Numbers of the form a+bia + bi—where a,bRa, b \in \mathbb{R} and i2=1i^2 = -1
  • Algebraically closed—every polynomial equation has a solution in C\mathbb{C} (Fundamental Theorem of Algebra)
  • Extends the real line to a plane—essential in engineering, physics, and advanced mathematics

Compare: Q\mathbb{Q} vs. R\mathbb{R}—both are infinite and dense, but R\mathbb{R} is complete while Q\mathbb{Q} has "holes" (like 2\sqrt{2}). This distinction drives much of real analysis. The containment hierarchy is: NZQRC\mathbb{N} \subset \mathbb{Z} \subset \mathbb{Q} \subset \mathbb{R} \subset \mathbb{C}.


Quick Reference Table

ConceptKey Symbols
Membership\in, \notin
Set Relationships\subseteq, \subset, ==
Combining Sets\cup (union), \cap (intersection)
Removing Elements\setminus (set difference)
Building New Structures×\times (Cartesian product), P\mathcal{P} (power set)
Special Sets\emptyset (empty set)
Number SystemsNZQRC\mathbb{N} \subset \mathbb{Z} \subset \mathbb{Q} \subset \mathbb{R} \subset \mathbb{C}
Logical Correspondence\cup \leftrightarrow OR, \cap \leftrightarrow AND

Self-Check Questions

  1. What's the difference between \subseteq and \subset? Give an example where ABA \subseteq B is true but ABA \subset B is false.

  2. If A={1,2,3}A = \{1, 2, 3\} and B={2,3,4}B = \{2, 3, 4\}, calculate ABA \cup B, ABA \cap B, and ABA \setminus B. Which operation gives the largest result? The smallest?

  3. Explain why A\emptyset \subseteq A is true for any set AA. What type of logical reasoning makes this true?

  4. The number sets form a chain: NZQRC\mathbb{N} \subset \mathbb{Z} \subset \mathbb{Q} \subset \mathbb{R} \subset \mathbb{C}. For each step, identify one element that's in the larger set but not the smaller one.

  5. Compare and contrast union (\cup) and Cartesian product (×\times). Both combine two sets—how do their outputs differ in structure and size?