An ordered pair $(a, b)$ is two objects written in a fixed order — a first component $a$ and a second component $b$. Unlike a set, order is essential: $(a, b) = (c, d)$ only if $a = c$ and $b = d$. So $(2, 3) \ne (3, 2)$, whereas $\{2,3\} = \{3,2\}$.
The Cartesian product $A \times B$ is the set of all ordered pairs whose first component comes from $A$ and second from $B$:
Think of it as every possible pairing — one element of $A$ matched with one element of $B$, exhaustively. Because each of the $n(A)$ first components can be paired with each of the $n(B)$ second components, the size multiplies:
Key properties:
| Property | Statement |
|---|---|
| Not commutative | $A \times B \ne B \times A$ in general (unless $A = B$ or one is empty) |
| Empty factor | If $A = \varnothing$ or $B = \varnothing$, then $A \times B = \varnothing$ |
| Distributes over $\cup,\cap$ | $A \times (B \cup C) = (A \times B) \cup (A \times C)$ |
| Plane and space | $\mathbb{R} \times \mathbb{R} = \mathbb{R}^2$ (the plane); $\mathbb{R}^3$ is the ordered triples $(x,y,z)$ |
The familiar $xy$-plane is exactly $\mathbb{R} \times \mathbb{R}$: every point is an ordered pair of real numbers. This is why the chapter matters — coordinate geometry, graphs of functions and the whole of calculus live inside a Cartesian product.
Deeper Insight — why "ordered" changes everything: The single word ordered is what separates this chapter from the previous one on sets. A set answers only "is this object in or out?"; an ordered pair additionally records "in which role?" — first or second, input or output, $x$ or $y$. That extra bit of structure is precisely what lets a Cartesian product model relationships between two collections rather than just a lump of objects. Once you grasp that $A \times B$ lists every conceivable pairing, the next two ideas fall out naturally: a relation is just a chosen subset of those pairings (the ones that actually satisfy some rule), and a function is a relation disciplined by one extra condition. Everything downstream — domain, range, graphs, even the coordinate plane you have used since Class 9 — is built on this one move from unordered membership to ordered pairing.