Section 1: Foundations
1: Sets and Functions
Sets form the bedrock of mathematical structures. A set is a collection of distinct objects (elements), denoted as A={a,b,c}. Key operations include:
- Union (A∪B): Elements in A, B, or both.
- Intersection (A∩B): Elements common to both sets.
- Complement (Ac): Elements not in A relative to a universal set.
- Cartesian Product (A×B): Ordered pairs (a,b) where a∈A, b∈B.
A relation R between sets A and B is a subset of A×B. An equivalence relation on A satisfies:
- Reflexivity: a∼a for all a∈A.
- Symmetry: If a∼b, then b∼a.
- Transitivity: If a∼b and b∼c, then a∼c.
Equivalence relations partition sets into disjoint equivalence classes.
Functions map elements from a domain X to a codomain Y, denoted f:X→Y. Each x∈X maps to exactly one f(x)∈Y. The range (or image) is the set {f(x)∣x∈X}⊆Y.
Function Types:
- Injective (one-to-one): If f(x1)=f(x2) implies x1=x2. (No two distinct inputs map to the same output.)
- Surjective (onto): Range equals codomain. (Every element in Y is mapped to by some x∈X.)
- Bijective: Both injective and surjective. (Permits a well-defined inverse.)
Composition: For f:X→Y and g:Y→Z, the composite g∘f:X→Z is defined by (g∘f)(x)=g(f(x)). Composition preserves injectivity and surjectivity.
Inverse Functions: A bijective f:X→Y has an inverse f−1:Y→X such that f−1(f(x))=x and f(f−1(y))=y.
Images and Preimages: For f:X→Y:
- Image of A⊆X: f(A)={f(x)∣x∈A}.
- Preimage of B⊆Y: f−1(B)={x∈X∣f(x)∈B}.
Note: f−1(B) is defined even when f lacks an inverse. Preimages preserve set operations:
f−1(B1∩B2)=f−1(B1)∩f−1(B2),f−1(B1∪B2)=f−1(B1)∪f−1(B2).
Images only preserve unions: f(A1∪A2)=f(A1)∪f(A2).