Ordered Pairs & Cartesian Product: Concepts
Introduction to Relations & Functions
In everyday life, we often observe associations between two quantities:
- The marks obtained by a student in an MCQ test depends on the number of correct answers.
- The area of a circle depends on its radius.
- A person's salary may depend on years of experience.
- The distance travelled at uniform speed depends on time.
All such dependencies can be described mathematically using relations and functions.
Suppose every student in a school is allotted exactly one house. This connection rule is a function because each student maps to precisely one house. If instead a student is paired with one or more sports teams, it is simply a relation.
Ordered Pairs
An ordered pair is a pair of objects written in a specific order. It is denoted by $(a, b)$, where $a$ is the first element and $b$ is the second element. Since order matters, in general, $(a, b) \neq (b, a)$ unless $a = b$.
Two ordered pairs $(a, b)$ and $(c, d)$ are equal if and only if their corresponding components are equal:
$$(a, b) = (c, d) \iff a = c \text{ and } b = d$$
An ordered pair $(x, y)$ represents the position of a point in the Cartesian plane, where $x$ is the abscissa (horizontal coordinate) and $y$ is the ordinate (vertical coordinate).
Show Solution
$$2x + 1 = 9 \Rightarrow 2x = 8 \Rightarrow \mathbf{x = 4}$$
$$y - 3 = 4 \Rightarrow \mathbf{y = 7}$$
Cartesian Product of Sets
Given two non-empty sets $A$ and $B$, their Cartesian Product $A \times B$ (read as '$A$ cross $B$') is the set of all ordered pairs $(a, b)$ where $a \in A$ and $b \in B$. $$A \times B = \{(a, b) : a \in A \text{ and } b \in B\}$$ If either $A = \emptyset$ or $B = \emptyset$, then $A \times B = \emptyset$.
Properties of Cartesian Product:
2. Distributive Laws:
- $A \times (B \cup C) = (A \times B) \cup (A \times C)$
- $A \times (B \cap C) = (A \times B) \cap (A \times C)$
3. Subset Relation: If $A \subseteq B$, then $A \times C \subseteq B \times C$ for any set $C$.
The Cartesian product is not commutative: $A \times B \neq B \times A$ unless $A = B$ or one of the sets is empty.
Show Solution
Show Solution
$$n(A \times B) = n(A) \times n(B) = 4 \times 3 = 12.$$
The number of subsets of a set of size $N$ is $2^N$.
Therefore, number of subsets of $A \times B$ is:
$$\mathbf{2^{12} = 4096}.$$
Show Solution
- $n(A \times B) = 6$.
- $n(A) = 2$ and $n(B) = 3$.
Since $6 = 2 \times 3$, we have verified $n(A \times B) = n(A) \times n(B)$.
Show Solution
The pairs are: $\mathbf{\{(1, 4), (1, 9), (3, 4), (3, 9), (5, 9)\}}$.
For $B \times A$: We want $(b, a) \in B \times A$ such that $b < a$.
- $b=4$: $4 < 5 \Rightarrow (4, 5)$ is valid.
- $b=9$: no element in $A$ is greater than 9.
The pairs are: $\mathbf{\{(4, 5)\}}$.
Since the sets of ordered pairs are different, they are **not equal**.
Show Solution
$$B \cap C = \{2, 3, 4\} \cap \{4, 5\} = \{4\}$$ $$A \times (B \cap C) = \{1, 3\} \times \{4\} = \mathbf{\{(1, 4), (3, 4)\}}$$.
RHS:
$$A \times B = \{(1, 2), (1, 3), (1, 4), (3, 2), (3, 3), (3, 4)\}$$ $$A \times C = \{(1, 4), (1, 5), (3, 4), (3, 5)\}$$ $$(A \times B) \cap (A \times C) = \mathbf{\{(1, 4), (3, 4)\}}$$
Since LHS = RHS, property is verified.