Published on

Bijection

Bijection in Set Theory

A bijection (or bijective function) is a function that is both injective and surjective — that is, a one-to-one correspondence between two sets.


Definition

Given two sets AA and BB, a function

f:ABf: A \to B

is a bijection if:

  1. Injective (one-to-one):

    a1,a2A, f(a1)=f(a2)    a1=a2\forall a_1, a_2 \in A,\ f(a_1) = f(a_2) \implies a_1 = a_2
  2. Surjective (onto):

    bB, aA such that f(a)=b\forall b \in B,\ \exists a \in A \text{ such that } f(a) = b

If both conditions hold, each element of AA corresponds to exactly one unique element of BB, and vice versa.


Examples

Finite example:

A={1,2,3},B={a,b,c}A = \{1, 2, 3\}, \quad B = \{a, b, c\}

Define f(1)=a, f(2)=b, f(3)=cf(1)=a,\ f(2)=b,\ f(3)=c.
✅ This is a bijection — each element of AA matches exactly one in BB.

Infinite example:

f:ZZ,f(x)=x+1f: \mathbb{Z} \to \mathbb{Z}, \quad f(x) = x + 1

✅ This is also bijective, since it’s both injective and surjective.


Why It Matters

If there exists a bijection between two sets AA and BB, they have the same cardinality (the same “size”), even if they’re infinite.
For example:

Neven numbers 2N\mathbb{N} \leftrightarrow \text{even numbers } 2\mathbb{N}

In Set Theory vs. Real Analysis

ContextDescription
Set theoryPurely structural — about correspondence between sets. Used to define cardinality.
Real analysisAdds extra properties (continuity, differentiability). Bijection helps define invertible functions like f(x)=exf(x) = e^x and its inverse ln(x)\ln(x).