Skip to main content

Properties of Relations

Properties of Relations

In Discrete Mathematics, a relation is a subset of the Cartesian product of two sets.

Suppose

RA×AR \subseteq A \times A

Different relations exhibit different properties depending on how their ordered pairs are related to one another.

Understanding these properties is one of the most important topics in GATE CSE, as many questions ask you to identify whether a relation satisfies one or more of these properties.

1. Reflexive Relation

Definition

A relation RR on a set AA is called reflexive if every element is related to itself.

Mathematically,

aA, (a,a)R\forall a \in A,\ (a,a)\in R

In simple words,

Every element must have a self-loop.

Example 1

Let

A={1,2,3}A=\{1,2,3\}

and

R={(1,1),(2,2),(3,3),(1,2)}R=\{(1,1),(2,2),(3,3),(1,2)\}

Check every element:

  • (1,1)(1,1)
  • (2,2)(2,2)
  • (3,3)(3,3)

Since every element appears with itself,

R is reflexive.

Example 2

Let

R={(1,1),(2,2)}R=\{(1,1),(2,2)\}

Since

(3,3)R(3,3)\notin R

the relation is not reflexive.

Visual Representation

1 ↺
2 ↺
3 ↺

Every vertex has a self-loop.

Quick Trick

To check reflexivity:

Count the self-loops.

For a set containing

nn

elements,

there must be exactly

nn

self-loops.

2. Irreflexive Relation

Definition

A relation is irreflexive if no element is related to itself.

Mathematically,

aA, (a,a)R\forall a\in A,\ (a,a)\notin R

Example

Let

A={1,2,3}A=\{1,2,3\}

and

R={(1,2),(2,3),(3,1)}R=\{(1,2),(2,3),(3,1)\}

There are no self-loops.

Hence,

R is irreflexive.

Counter Example

If

R={(1,1),(2,3)}R=\{(1,1),(2,3)\}

Since

(1,1)R(1,1)\in R

the relation is not irreflexive.

Visual Representation

1 → 2
↑ ↓
3 ←

No self-loops exist.

Important Note

A relation cannot be both

  • Reflexive
  • Irreflexive

unless the set is empty.

3. Symmetric Relation

Definition

A relation is symmetric if whenever

(a,b)R(a,b)\in R

then

(b,a)R(b,a)\in R

must also belong to the relation.

Mathematically,

(a,b)R    (b,a)R(a,b)\in R \implies (b,a)\in R

Meaning

Every arrow must have another arrow pointing back.

Example

Let

R={(1,2),(2,1),(2,3),(3,2)}R=\{(1,2),(2,1),(2,3),(3,2)\}

Check:

  • (1,2)(1,2)(2,1)(2,1)
  • (2,3)(2,3)(3,2)(3,2)

Hence,

R is symmetric.

Counter Example

R={(1,2),(2,3)}R=\{(1,2),(2,3)\}

Since

(2,1)(2,1)

does not exist,

the relation is not symmetric.

Visual Representation

1 ⇄ 2 ⇄ 3

Every edge exists in both directions.

Important Note

Self-loops automatically satisfy symmetry.

Because

(a,a)(a,a)

is its own reverse.

4. Asymmetric Relation

Definition

A relation is asymmetric if

whenever

(a,b)R(a,b)\in R

then

(b,a)R(b,a)\notin R

Also,

no element can relate to itself.

Formally,

(a,b)R(b,a)R(a,b)\in R \Rightarrow (b,a)\notin R

Example

R={(1,2),(2,3)}R=\{(1,2),(2,3)\}

Reverse pairs do not exist.

No self-loops exist.

Hence,

R is asymmetric.

Counter Example

R={(1,2),(2,1)}R=\{(1,2),(2,1)\}

Both directions exist.

Therefore,

Not asymmetric.

Important Property

Every asymmetric relation is automatically

  • Irreflexive

because

(a,a)(a,a)

would violate asymmetry.

5. Antisymmetric Relation

Definition

A relation is antisymmetric if

whenever

(a,b)R(a,b)\in R

and

(b,a)R(b,a)\in R

then

a=ba=b

Mathematically,

(a,b)R(b,a)R    a=b(a,b)\in R \land (b,a)\in R \implies a=b

Meaning

Different elements cannot point to each other.

Only self-loops may exist in both directions.

Example

R={(1,1),(2,2),(1,2)}R=\{ (1,1), (2,2), (1,2) \}

There is no

(2,1)(2,1)

Hence,

the relation is antisymmetric.

Counter Example

R={(1,2),(2,1)}R=\{ (1,2), (2,1) \}

Here,

121\neq2

but both pairs exist.

Hence,

Not antisymmetric.

Common Confusion

Symmetric means

1 ⇄ 2

Antisymmetric means

1 → 2

or

2 → 1

but not both.

Important Note

Identity relation is always antisymmetric.

6. Transitive Relation

Definition

A relation is transitive if

whenever

(a,b)R(a,b)\in R

and

(b,c)R(b,c)\in R

then

(a,c)R(a,c)\in R

must also belong to the relation.

Mathematically,

(a,b)R(b,c)R    (a,c)R(a,b)\in R \land (b,c)\in R \implies (a,c)\in R

Meaning

If

A is related to B

and

B is related to C

then

A must be related to C.

Example

R={(1,2),(2,3),(1,3)}R=\{ (1,2), (2,3), (1,3) \}

Since

(1,2)(1,2)

and

(2,3)(2,3)

produce

(1,3)(1,3)

the relation is transitive.

Counter Example

R={(1,2),(2,3)}R=\{ (1,2), (2,3) \}

Since

(1,3)(1,3)

is missing,

the relation is not transitive.

Visual Representation

1 → 2 → 3

Therefore

1 → 3

must exist.

Relationship Between Properties

PropertyCondition
ReflexiveEvery element relates to itself
IrreflexiveNo element relates to itself
SymmetricIf (a,b)(a,b) exists then (b,a)(b,a) exists
AsymmetricIf (a,b)(a,b) exists then (b,a)(b,a) cannot exist
AntisymmetricIf both directions exist then a=ba=b
Transitive(a,b)(a,b) and (b,c)(b,c) imply (a,c)(a,c)

Comparison Table

PropertySelf Loops AllowedReverse Pair RequiredReverse Pair Forbidden
Reflexive✅ Yes
Irreflexive❌ No
Symmetric✅ Yes✅ Yes
Asymmetric❌ No✅ Yes
Antisymmetric✅ YesOnly when a=ba=bFor different elements
TransitiveDependsDependsDepends

GATE Tips

  • Reflexive → Every element has a self-loop.
  • Irreflexive → No self-loops at all.
  • Symmetric → Every arrow has a matching reverse arrow.
  • Asymmetric → No reverse arrows and no self-loops.
  • Antisymmetric → Reverse arrows are allowed only for self-loops.
  • Transitive → Whenever a path of length two exists, the shortcut edge must also exist.

Memory Tricks

PropertyEasy Way to Remember
ReflexiveEveryone likes themselves
IrreflexiveNobody likes themselves
SymmetricFriendship is mutual
AsymmetricOne-way street
AntisymmetricTwo-way only if it's the same person
TransitiveFriend of a friend implies a direct connection