Key Ideas
1Function Definition. A relation from A to B where every element of A is paired with exactly one element of B.
2Injective (One-to-One). A function where different inputs always produce different outputs — no two inputs share the same output.
3Surjective (Onto). A function where every element of the output set (codomain) is actually reached by at least one input.
4Bijective. A function that is both injective and surjective — every output is hit exactly once, creating a perfect pairing between inputs and outputs.
5Composition of Functions. Applying one function to the result of another: (f composed with g)(x) = f(g(x)) — compute the inner function first.
Worked Examples
Is f(x) = x^2 injective on all real numbers?
No, f(x)=x^2 is not injective (fails at x=2 and x=-2)
Is f(x) = x + 3 injective on all real numbers?
Yes, f(x) = x+3 is injective
Let f(x) = x+1 and g(x) = 2x. Find (f composed with g)(3).
(f composed with g)(3) = 7