Notes
Categories

Equal Sets, Subsets, and Power Sets [ English ]

< Prev Next >

1. Introduction

In set theory, relationships between sets are fundamental for understanding structure and hierarchy. Three key concepts in this context are:

These concepts are widely used in logic, combinatorics, and computer science.


2. Equal Sets

Definition

Two sets are said to be equal if they contain exactly the same elements.

Representation

A = B

Example

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

A = B because:


Key Points


3. Subsets

Definition

A set A is a subset of set B if every element of A is also an element of B.

Representation

A ⊆ B

Example

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

A ⊆ B


Proper Subset

If A ⊆ B and A ≠ B, then A is a proper subset of B.

A ⊂ B

Example

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

A ⊂ B


Important Properties


4. Power Set

Definition

The power set of a set A is the set of all possible subsets of A.

Representation

P(A)

Example

Let:

A = {1, 2}

Subsets of A:

Power set:

P(A) = { {}, {1}, {2}, {1, 2} }

Example 2

Let:

A = {a, b}
P(A) = { {}, {a}, {b}, {a, b} }

5. Number of Elements in Power Set

If a set has n elements, then:

|P(A)| = 2^n

Example

A = {1, 2, 3}

Number of subsets:

|P(A)| = 2^3 = 8

6. Difference Between Concepts

Concept Meaning Example
Equal Sets Same elements {1,2} = {2,1}
Subset All elements contained {1} ⊆ {1,2}
Power Set Set of all subsets P({1,2})

7. Key Observations


8. Summary

< Prev Next >