Determine whether $(V,E)$ is a partial order. $V = \{a, b, c, d\}$ $E = \{(a, b), (b, c), (c, d), (a, c), (a, d), (b, d)\}$
I am confused since the definition of partial order says:
A partial order (PO) $(D,\sqsubseteq)$ consists of a set $D$, called domain, and of a relation $\sqsubseteq \subseteq D \times D$ such that for every $d1, d2, d3 \in D$ we have:
- Reflexivity: $d1 \sqsubseteq d1$
- Transitivity: $d1 \sqsubseteq d2 \land d2 \sqsubseteq d3 \Rightarrow d1 \sqsubseteq d3$
- Antisymmetry: $d1 \sqsubseteq d2 \land d2 \sqsubseteq d1 \Rightarrow d1 = d2$
Now, when I look at the given $E$, I don't understand how is it a relation. How can I use it like if it was let's say relation $<$? Where I can simply see if $d1 < d2$ for example?
A binary relation $E$ on a set $V$ is rigorously defined as a set of pairs of elements of $V$, and the notation $x~E~y$ stands for $(x,y)\in E$.
Said that, now we have $a~E~b~E~c~E~d$, and 3 more: $a~E~c, \ a~E~d, \ b~E~d$, which lead to the transitivity of $E$.
You can also verify antisymmetry of $E$.
However, $E$ is not reflexive, as none of the following holds (though all should): $$a~E~a, \ b~E~b, \ c~E~c, \ d~E~d$$ So, $E$ is not a partial order.