Skip to main content

Menu

LEVEL 0
0/5 XP
HomeAboutTopicsPricingMy VaultStats

Categories

πŸ€– Artificial Intelligence
☁️ Cloud and Infrastructure
πŸ’Ύ Data and Databases
πŸ’Ό Professional Skills
🎯 Programming and Development
πŸ”’ Security and Networking
πŸ“š Specialized Topics
HomeAboutTopicsPricingMy VaultStats
LEVEL 0
0/5 XP
GitHub
Β© 2026 CheatGridβ„’. All rights reserved.
Privacy PolicyTerms of UseAboutContact

Set Theory and Mathematical Relations Cheat Sheet

Set Theory and Mathematical Relations Cheat Sheet

Back to Mathematics and Algorithms
Updated 2026-05-20
Next Topic: Sorting Algorithms Cheat Sheet

Set theory is the foundational branch of mathematics that studies collections of objects and the rules governing their membership, containment, and combination β€” every other area of mathematics, from algebra to topology to computer science, uses set-theoretic language as its grammar. Relations extend this foundation by formally capturing how elements of one set correspond to elements of another, encoding structures as diverse as divisibility, database foreign keys, and scheduling dependencies all within a single framework. A crucial insight: a relation is simply a subset of a Cartesian product, which means every property of a relation (reflexivity, transitivity, antisymmetry) is really a constraint on which ordered pairs are included β€” recognizing this makes the classification of equivalences, orders, and functions feel inevitable rather than arbitrary.

What This Cheat Sheet Covers

This topic spans 14 focused tables and 109 indexed concepts. Below is a complete table-by-table outline of this topic, spanning foundational concepts through advanced details.

Table 1: Set Notation and RepresentationTable 2: Types of SetsTable 3: Core Set OperationsTable 4: Laws of Set TheoryTable 5: Power Set and CardinalityTable 6: Cartesian ProductsTable 7: Binary RelationsTable 8: Properties of RelationsTable 9: Special Relation TypesTable 10: Equivalence Classes and Quotient SetsTable 11: Partial Orders and Poset StructureTable 12: Relation ClosuresTable 13: Relation RepresentationsTable 14: Cardinality of Infinite Sets

Table 1: Set Notation and Representation

Sets are collections of distinct objects called elements; the notation used to describe them is the grammar of all further set-theoretic reasoning. Roster and set-builder notation are the two primary ways to write a set, and the membership and subset symbols are the connective tissue of every proof.

NotationExampleDescription
Roster notation
\{1, 2, 3, 4\}
Lists elements explicitly between braces; order and repetition do not change the set.
Set-builder notation
\{x \in \mathbb{Z} \mid x > 0\}
Defines a set by a property: variable, separator (\mid or :), predicate. Read "the set of all x in \mathbb{Z} such that x > 0."
Membership (∈)
3 \in \{1,2,3\}; 5 \notin \{1,2,3\}
Asserts an element belongs to a set; \notin denotes non-membership.
Empty set (βˆ…)
\emptyset = \{\}, \lvert\emptyset\rvert = 0
The unique set with no elements; a subset of every set.
Subset (βŠ†)
\{1,2\} \subseteq \{1,2,3\}
A \subseteq B: every element of A is also in B; allows A = B.

More in Mathematics and Algorithms

  • Probability in Statistics Cheat Sheet
  • Sorting Algorithms Cheat Sheet
  • Algebra Cheat Sheet
  • Combinatorics Cheat Sheet
  • Game Theory for Computer Science Cheat Sheet
  • Mathematical Proof Techniques Cheat Sheet
View all 42 topics in Mathematics and Algorithms