The Cartesian Product of two non-empty sets A and B is the set of all ordered pairs (a, b) such that a belongs to A and b belongs to B.
Notation: A × B = { (a, b) : a ∈ A and b ∈ B }
A Relation (R) from set A to set B is a subset of the Cartesian product A × B. It is derived by describing a relationship between the first element and the second element of the ordered pairs.
A Function (f) from set A to set B is a special type of relation where every element of set A has one and only one image in set B.
Conditions for a function:
Visualizing functions through graphs is crucial for understanding their behavior:
| Function Name | Expression | Graphical Behavior |
|---|---|---|
| Identity Function | f(x) = x | A straight line passing through the origin at 45°. |
| Modulus Function | f(x) = |x| | A V-shaped graph with the vertex at (0,0). |
| Greatest Integer Function | f(x) = [x] | A "step" or "staircase" graph. It rounds down to the nearest integer. |
| Signum Function | f(x) = x/|x| | Returns 1 for x > 0, -1 for x < 0, and 0 for x = 0. |
These classifications describe how elements are mapped between sets:
A function is One-One if distinct elements in the domain have distinct images in the co-domain.
Mathematically: if f(x₁) = f(x₂), then x₁ = x₂.
A function is Onto if every element in the co-domain is the image of at least one element in the domain.
Mathematically: Range = Co-domain.
A function that is both One-One and Onto is called Bijective. It represents a perfect "one-to-one correspondence."
Q: Can a function have an empty domain?
A: Technically, an empty function exists from an empty set, but for practical exam purposes, domains are non-empty.
Q: What is a Many-One function?
A: A function where two or more different elements in the domain have the same image in the co-domain (e.g., f(x) = x²).