Please explain, "Asymmetric is stronger than simply not symmetric".

4.3k Views Asked by At

In some textbook I found a statement like, "Asymmetric is stronger than simply not symmetric".

But as I try to perceive this statement, both appear to be same to me.

For example, parentof is an asymmetric relation. If $A$ is a parentof $B$, $B$ can not be parentof $A$. We arrive at the same conclusion if we call this relation to be not symmetric.

(Liyang Yu. A Developer’s Guide to the Semantic Web. 2nd. Springer, 2014. p 226, last sentence of second paragraph from bottom.)

6

There are 6 best solutions below

3
On BEST ANSWER

If a relation is symmetric then there is a two way arrow, e.g. if someone is a blood relative of me then I HAVE to be a blood relative of them.

If a relation is not symmetric then there can be one arrow or two, e.g. if I like someone then they may or may not like me, either case could be true.

If a relation is Asymmetric then having one arrow means that there definitely cannot be two, e.g. if someone is my parent then I definitely CANNOT be their parent.

So basically the difference between non-symmetric and asymmetric is that in one we might have two arrows some of the time, but in the other we can NEVER have a second arrow once we have the first.

4
On

In asymmetric and antisymmetric relationships no two distinct elements can be joined by arrows in the two directions. Moreover in asymmetric relationships there can be no loops.

Partial orders are antisymmetric. Strict orders are asymmetric.

Both conditions are generally different from the negation of symmetry; the latter means that there is at least one pair of distinct elements with an arrow in one direction but not the other.

1
On

Let $R$ be some binary relation.

Asymmetric means that: $ \forall x,y \space \space (x,y) \in R \Rightarrow (y,x) \notin R $

Not symmetric means: $ \exists x,y \space \space \space \space (x,y)\in R \space \land (y,x) \notin R $

This means that to prove that a relation is not symmetric, you just have two find two elements for which the property holds. However, proving that a relation is asymmetric means that you have to prove the assymetric property for all possible pairs.

0
On

It is just the standard negation of quantifiers: Asking that a relation is never true is stronger than the negation of the relation being always true.

A relation being symmetric means that all pairs can be inverted.

The negation of this is that some pairs cannot be inverted.

Asymmetric means that all pairs cannot be inverted.

0
On

One way to see why "not symmetric" isn't the same as "asymmetric" is to look for an example relationship that is neither symmetric nor asymmetric. The relationship $\leq$ is such an example.

That could be the end of my post, but just to clarify:

It is not symmetric because a $\leq$ b does not imply b $\leq$ a. (In other words, you can find values for a and b such that a $\leq$ b and b $\nleq$ a. For example, let a = 1 and b = 2.)

It is not asymmetric because a $\leq$ b does not imply b $\nleq$ a. (In other words, you can find values for a and b such that a $\leq$ b and b $\leq$ a. For example, let a = 1 and b = 1.)

So $\leq$ is not symmetric but isn't asymmetric. And that means "not symmetric" and "asymmetric" are not equivalent.

0
On

What the book said is wrong.

Consider such a case: Let <∅, ∅> be an empty set with an empty relation defined on it. Then the empty relation on the empty set must be reflective, irreflective, symmetric, antisymmetric, asymmetric, and transitive simultaneously. Since the relation is both asymmetric and symmetric, it follows that asymmetry cannot deduce non-symmetry.

Indeed, what the book said is right mostly. However, it may fail in some extreme scenarios, like the example presented above.