let $\mathrm A = \Bbb Z \text{ and } R = \{(a,b) \in \mathrm A\times \mathrm A | a \lt b \}$ investigate whether the relationship is symmetric or antisymmetric.
So (...)
- Symetric [
FALSE]: $(a,b) \in R \implies a \lt b \implies (b,a) \not\in R \text { as if } a\lt b \implies b \not\lt a$ - Antisymetric [
TRUE]: $(a,b) \in R \land (b,a)\not\in R \implies a = b$.
Since if $P \land Q \implies S$, if $P$ or $Q$ is false, then no matter the logic value in $Q$, because $F \implies F \equiv \mathrm T$ and $F \implies V \equiv \mathrm T$, but I don't know how to justify this antisymetry in this relation.
There is a way to write this as a math notation?
Thanks!
We want to show: $\forall x,y \in A\,(\,(x,y)\in R \land (y,x)\in R \implies x=y)$.
This is how I will do it:
Suppose $x$ and $y$ are arbitrary elements of $A$ and suppose $(x,y)\in R$ and $(y,x)\in R$. Then $x<y$ and $y<x$, but this is impossible. So, our statement is vacuously true.
Another way would be to prove the contrapositive: $\forall x,y \in A\,(\, x\ne y\implies (x,y)\not\in R \lor (y,x)\not\in R)$ which isn't difficult to prove.
Or you may directly write it out like this,
\begin{align} &\forall x,y \in A\,(\,(x,y)\in R \land (y,x)\in R \implies x=y)\\ &\equiv \forall x,y \in A\,(\,x<y \land y<x \implies x=y)\\ &\equiv \forall x,y \in A\,(\text{ False} \implies x=y)\\ &\equiv \forall x,y \in A\,(\text{ True })\\ \end{align} which is equivalent to $\text{True}$.