Given a Cartesian product of two sets, A x B, an ordered pair consists of values picked from both sets.

For example if we have

  A = { 1, 2, 3 }
  B = { 4, 5, 6 }
Then the valid ordered pairs are:
  (1,4) (1,5) (1,6)
  (2,4) (2,5) (2,6)
  (3,4) (3,5) (3,6)

Log in or register to write something here or to contact authors.