I am reading about lexicographic ordering, and I want to make sure I am understanding it properly.
Lexicographic ordering is defined to be the cartesian product of two, or more, posets. So given that $A_1 = (B_1, \preceq)$, and $A_2 = (B_2, \preceq)$; and $A_1 \times A_2$ is a lexicographic order?
And $((a,b),(c,d))$ is in $A_1 \times A_2$, if $(a,b)$ is in $A_1$, and $(c,d)$ is in $A_2$.
But for the cartesian product to be defined, it seems like the relation in each poset has to be the same. Is that right?
A part of what the book says, that I don't understand, is, "Lexicographic ordering is defined by specifying that one pair is less than a second pair:
(i) if the first entry of the first pair is less than (in $A_1$) the first entry of the second pair, or
(ii) if the first entry of both the first and second pairs are equal, but the second entry of first pair is less than (in $A_2$) the second entry of the second pair.
In other words, $(a_1,a_2)$ is less than $(b_1,b_2)$, that is, $(a_1,a_2)≺(b_1,b_2),$ either
if $a_1≺b_1$ or
if both $a_1=b_1$ and $a_2≺b_2$."
Let $A=\{a,b,c\}$ have the ordering $a<b<c$.
Let $B=\{0,1\}$ have the ordering $0<1$.
Then the lexicographic ordering on $A\times B$ is $(a,0)<(a,1)<(b,0)<(b,1)<(c,0)<(c,1)$.