A relation on a set is called symmetric, if for all elements $a, b \in A$, $(b,a) \in R$ whenever $(a, b) \in R$. In effect, all relations must be mirrored.

For example:

  • Symmetric: on All pairs of elements have the same properties in both directions.

    digraph G {
    	1->1
      1->2
      2->1
      2->3
      3->2
      3->3
    }
  • Symmetric: on All pairs of elements have the same properties in both directions.

    digraph G {
    	1->1
      2->2
      3->3
    }
  • Symmetric: on

  • Not symmetric: on Not all pairs of elements have the same properties in both directions.

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