Mathematical Sets: Definitions, Formulas, and Applications

Sets are fundamental concepts in mathematics, used in algebra, probability, number theory, and various scientific fields.

MathematicalSets

~3 min read · Updated Jul 20, 2025

1. Definitions and Set Notation


A set is a well-defined collection of distinct objects, called elements. Sets are typically denoted by capital letters, with elements enclosed in curly braces:

A = {1, 2, 3, 4}   # A set containing four numeric elements

Ways to represent sets:

  • Listing elements: Explicit enumeration, e.g. {a, b, c}
  • Descriptive notation: Using a property, e.g. B = {x | x is an even number less than 10} → {2, 4, 6, 8}
  • Algebraic rules: Expressing sets via formulas

2. Types of Sets


  • Empty Set (∅): Contains no elements: C = {} or C = ∅
  • Finite and Infinite Sets: Finite: limited elements; Infinite: e.g., N = {1, 2, 3, ...}
  • Universal Set (U): The set of all elements under consideration
  • Complement of a Set (Aᶜ): Elements in U that are not in A. If A = {2, 4, 6}, U = {1, 2, 3, 4, 5, 6}, then Aᶜ = {1, 3, 5}

3. Set Operations


  • Union (A ∪ B): All elements from both sets
    A = {1, 2, 3}, B = {3, 4, 5}  
    A ∪ B = {1, 2, 3, 4, 5}
    
  • Intersection (A ∩ B): Common elements
    A ∩ B = {3}
    
  • Difference (A − B): Elements in A not in B
    A − B = {1, 2}, B − A = {4, 5}
    
  • Complement (Aᶜ): Elements not in A with respect to U
    U = {1, 2, 3, 4, 5}, A = {1, 2}  
    Aᶜ = {3, 4, 5}
    
  • Cartesian Product (A × B): All ordered pairs
    A = {x, y}, B = {1, 2}  
    A × B = {(x,1), (x,2), (y,1), (y,2)}
    

4. Essential Set Theory Formulas


  • Distributive Law:
    A ∩ (B ∪ C) = (A ∩ B) ∪ (A ∩ C)
    
  • Element Count in Union:
    |A ∪ B| = |A| + |B| − |A ∩ B|
    
  • Cartesian Product of Multiple Sets:
    |A₁ × A₂ × ... × Aₙ| = |A₁| × |A₂| × ... × |Aₙ|
    

5. Applications of Sets


  • Number Theory: Classifying and organizing sets like natural numbers, integers, primes
  • Algebra & Probability: Defining events, sample spaces
  • Computer Science: Data models, search queries, database logic
  • Mathematical Logic: Set-based representation of statements and truth values
  • Graph Theory: Modeling connections and network edges as sets

Written & researched by Dr. Shahin Siami

Subarticles

Related Articles

Solving Integrals Using Partial Fraction Decomposition: A Complete Guide with Practical Examples

Partial fraction decomposition is one of the most powerful techniques for integrating rational functions. By breaking a complicated rational expression into simpler fractions, integration becomes straightforward. This article explains when and how to use partial fractions, the different decomposition cases, step‑by‑step procedures, and fully worked examples.

Continue

Integration by Parts: A Complete Guide to Solving Integrals Using the By‑Parts Method

Integration by parts is one of the most important techniques in calculus for solving integrals involving products of functions. This article explains the formula, the logic behind it, how to choose u and dv, common patterns, advanced applications, and fully worked examples.

Continue

Substitution Techniques in Integration: A Complete and Practical Guide

Substitution is one of the most powerful and widely used techniques in integration. It simplifies complex integrals by transforming them into easier forms. This article explains the main substitution methods, including basic u‑substitution, trigonometric substitution, hyperbolic substitution, substitution in rational functions, exponential integrals, trigonometric integrals, and definite integrals.

Continue

Complete Integral Formula Sheet: All Essential Indefinite and Definite Integral Formulas

This article provides a comprehensive collection of the most important integral formulas in calculus, including basic integrals, power rules, exponential and logarithmic integrals, trigonometric and inverse trigonometric integrals, hyperbolic functions, integration techniques, and definite integral identities.

Continue

Definite Integrals: Definition, Core Concepts, Methods of Calculation, and Applications

A definite integral is one of the fundamental concepts in calculus, used to compute the accumulated value of a quantity over an interval. This article explains the definition of definite integrals, the Riemann interpretation, the Fundamental Theorem of Calculus, methods of evaluation, and real-world applications.

Continue

Cauchy’s Mean Value Theorem and Its Role in Advanced Function Analysis

This article explains Cauchy’s Mean Value Theorem, the generalized form of the Mean Value Theorem. It states that for two continuous and differentiable functions, there exists a point in the interval where the ratio of their derivatives equals the ratio of their overall changes. This theorem is fundamental in proving important results such as L'Hôpital’s Rule and plays a key role in mathematical analysis.

Continue