Is an anti-symmetric and asymmetric relation the same? Are irreflexive and anti reflexive the same?

74.5k Views Asked by At

I don't understand the difference between an anti symmetric and asymmetric relation. From my understanding, it is asymmetric if there is not any element where: if (x,y) (y,x).

But what if you have only one (not all) double arrow (e.g. one where if (x,y) then (y,x)). What is the name for this kind of relation? Anti symmetric?

Same goes for irreflexive and anti-reflexive. From my understanding, it is irreflexive if for no x then (x,x). But what if you have only one element that refers to itself?

I hope I made the question clear.

Thank you.

2

There are 2 best solutions below

0
On

A binary relation $R$ on a set $X$ is symmetric when :

$\forall a,b \in X ( aRb \rightarrow bRa )$.

An example of symmetric relation : "... is married to ___".

A binary relation $R$ on a set $X$ is asymmetric when :

$\forall a,b \in X ( aRb \rightarrow \lnot(bRa) )$.

An example of asymmetric relation : "... is father of ___".

A binary relation $R$ on a set $X$ is antisymmetric if there is no pair of distinct elements of $X$ each of which is related by $R$ to the other; i.e. :

$\forall a,b \in X ((aRb \land bRa) \rightarrow a = b )$.

An example of antisymmetric relation : The usual order relation ≤ on the real numbers.

Every asymmetric relation is also an antisymmetric relation.

Your proposal for asymmetric is :

  • if there is not any element where: if (x,y), then (y,x);

this "sounds" like :

$\lnot \exists x,y ( xRy \rightarrow yRx )$.

Moving "inward" $\lnot$, it is equivalent to :

$\forall x,y (\lnot ( xRy \rightarrow yRx ))$.

Now we need the equivalence between $\lnot ( p \rightarrow q )$ and $p \land \lnot q$ to get :

$\forall x,y (xRy \land \lnot (yRx) )$.

This is not the same as the formula in the definition.

According to the definition of asymmetric, if $a$ is father of $b$, then $b$ is not father of $a$, which is reasonable.

According to your "rewritten" condition, for every couple of individuals, we have that the first one is father of the second and the second is not father of the first one, which sound quite unreasonable.

Examples about reflexive and irreflexive (or anti-reflexive) :

  • the relation "... is equal to _" between real numbers is reflexive;

  • the relation "... is greater than ___" between real numbers is irreflexive.

0
On

Every asymmetric relation is also antisymmetric. But if antisymmetric relation contains pair of the form (a,a) then it cannot be asymmetric.

Antisymmetric means that the only way for both aRb and bRa to hold is if a = b. It can be reflexive, but it can't be symmetric for two distinct elements.

Asymmetric is the same except it also can't be reflexive. An asymmetric relation never has both aRb and bRa, even if a = b.

So an asymmetric relation is just one that is both antisymmetric and irreflexive.

Antisymmetricity is defined as:

 ∀a∀b(((a, b) ∈ R ∧ (b, a) ∈ R) → (a = b))

So if a = b then (a,b) = (a,a) = (b,b) = (b,a) ∈ R. So it implicitly says that if a ≠ b, then either (a, b) ∈ R or (b, a) ∈ R but not both, which indirectly is the part of the defition of asymmetricity

 ∀a∀b((a, b) ∈ R → (b, a) ∉ R)

However the definition above of asymmetricity indirectly adds that if a = b then

 (a,b) = (a,a) = (b,b) = (b,a) ∉ R. 

which is the reason for why asymmetric relation cannot be reflexive.

For example, {<1,1>, <1,2>, <2,3>} is not asymmetric because of <1,1>, but it is antisymmetric.

So in matrix representation of the asymmetric relation, diagonal is all 0s. And in digraph representation, there are no self-loops.