A relation on a set is called antisymmetric, if $(a, b)$ and $(b, a)$ cannot both be in $R$ unless $a = b$.

(it also does not mean should be in )

This is also not opposite to symmetric, instead it means that you can go one way but you cannot come back unless if you’re going from an element to itself.

For example:

  • Antisymmetric: , , , on , , or .

  • Antisymmetric: on You can go one way but not the other.

    digraph G {
    	1->1
      1->3
      2->3
      3->3
    }
  • Antisymmetric (also symmetric): on You can go one way but not the other.

    digraph G {
    	1->1
      2->2
      3->3
    }
  • Not antisymmetric: on There are bi-directional paths here.

    digraph G {
      1->1
    	1->2
      2->1
    }