~3 دقیقه مطالعه · آخرین به‌روزرسانی ۲۷ تیر ۱۴۰۴

1. Set Operations


Union (∪)


The union of two sets includes all elements from both:


A = {1, 2, 3}, B = {3, 4, 5}
A ∪ B = {1, 2, 3, 4, 5}

  • Associativity: A ∪ (B ∪ C) = (A ∪ B) ∪ C
  • Commutativity: A ∪ B = B ∪ A
  • Identity: A ∪ ∅ = A

Intersection (∩)


Includes only elements common to both sets:


A ∩ B = {3}

  • Associativity: A ∩ (B ∩ C) = (A ∩ B) ∩ C
  • Commutativity: A ∩ B = B ∩ A
  • Identity: A ∩ U = A; A ∩ ∅ = ∅

Difference (−)


Removes elements of one set from another:


A − B = {1, 2}
B − A = {4, 5}

  • A − A = ∅
  • A − ∅ = A

2. De Morgan’s Laws


Show how complements interact with union and intersection:


(A ∪ B)ᶜ = Aᶜ ∩ Bᶜ
(A ∩ B)ᶜ = Aᶜ ∪ Bᶜ

3. Cartesian Product (×)


Creates ordered pairs from elements in two sets:


A = {x, y}, B = {1, 2}
A × B = {(x,1), (x,2), (y,1), (y,2)}

  • Size: |A × B| = |A| × |B|
  • Not commutative: A × B ≠ B × A

4. Set Equality and Equivalence


Equality


A = {1, 2, 3}, B = {3, 2, 1}
A = B

Order does not affect equality.


Equivalence


A = {x, y, z}, B = {1, 2, 3}
|A| = |B| → A ≈ B

Same number of elements implies equivalence.


5. Closure Property


A set is closed under an operation if applying the operation yields a result in the same set:


  • ℤ is closed under addition: ∀ a, b ∈ ℤ → a + b ∈ ℤ
  • ℕ is not closed under subtraction: 3 − 5 ∉ ℕ

6. Types of Numerical Sets


SetSymbolProperties
Natural Numbers{0, 1, 2, 3, ...}; closed under + and ×
Integers{..., −2, −1, 0, 1, 2, ...}; closed under +, −, ×
Rational NumbersIncludes fractions; closed under all four operations
Irrational NumbersℚᶜNon-repeating decimals like √2, π
Real NumbersIncludes all above: ℕ, ℤ, ℚ, ℚᶜ

Conclusion


Set theory underpins many mathematical and computational concepts. By understanding fundamental operations, properties like closure and equality, and the structure of numerical sets, learners gain insight into logic, algebra, and data modeling that applies across disciplines.


نوشته و پژوهش‌شده توسط دکتر شاهین صیامی

مقالات مرتبط

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.

ادامه

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.

ادامه

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.

ادامه

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.

ادامه

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.

ادامه

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.

ادامه