Cartesian product of 2 dimensional

287 Views Asked by At

Let $R=\{(1,1),(2,2),(3,2),(4,1)\}$. Then how can I calculate $R\times R$?

1

There are 1 best solutions below

4
On

Recall that the cartesian product is the set of all ordered pair therefore

$$R\times R=\{((1,1),(2,2)),((1,1),(3,2)),\ldots\}$$

with $|R\times R|=16$.