I`m trying to prove that this relation is partially ordered set:
- $A=\{1,2,3,4,5,6\}$
- $R =\mathcal P(A) \times \mathcal P(A) $
- $(B,C)R(D,E) \Longleftrightarrow (B \subset D) \vee ((B=D)\wedge(C \subseteq E))$
the condition for partially ordered set are:
- if for all $a \in A$(the functions set) implies $(a,a)\in R \rightarrow$ Reflexivity
- for all $(a,b) \in R , (b,a) \in R \rightarrow a=b $ i.e. Anti - Symmetry
- if for all $(a,b) \in R $ and $(b,c) \in R \rightarrow (a,c)\in R $ Transitivity
I need to prove the rhs and lhs that found in (3.)?
how I can find the minimal and maximal terms?
I would like to get some advice how to do that.
Thanks!
I am not sure if I understood your question correctly, so my answer might not apply (in case I guessed wrong). I suspect that you wished for $R \subseteq \mathcal{P}(A)^4$. If this is true, then let's start with something simpler:
$Q \subseteq \mathcal{P}(A) \times \mathcal{P}(A)$, where $(B)\ Q\ (C) \iff B \subseteq C$. It is quite straightforward to check that $\subseteq$ is a partial order.
Now, $R$ works on pairs rather than elements, and the general schema that $R$ follows is called the lexicographic order. The only thing we would like to do is check if it really is a partial order:
Let $\leq_X$ and $\leq_Y$ be partial orders on $X$ and $Y$ respectively. Then $\leq_{X \times Y}$ defined as $$(x_1,y_1) \leq_{X \times Y} (x_2,y_2) \iff x_1 \lneq_X x_2 \lor (x_1 = x_2 \land y_1 \leq_Y y_2)$$ is a partial order because
Now, $R$ is the lexicographic order constructed from two copies of $Q$ and so it is a partial order.
I hope this helps $\ddot\smile$