Summarize this article:
Last updated on September 30, 2025
Relations describe how elements from one set are connected to elements in another set. The types of relations include universal, symmetric, reflexive, transitive, and so on. If a relation is at the same time reflexive, symmetric, and transitive, then it is an equivalence relation.
A relation is a set of ordered pairs that connects elements from a domain to elements in a codomain. A relation can be defined by a rule, such as y = x2, which pairs each value of x from set A with a corresponding y value in set B.
Empty Relation
Definition: In empty relations, no elements are related.
Example: For student set A, the relation “is taller than” is empty if all students are the same height: R = or R = {}.
Universal Relation
Definition: Every pair of elements is related
Example: For set A = {1, 2}, R = {(1, 1), (1, 2), (2, 1), (2, 2)} = A × A
Identity Relation
Definition: A relation in which every element in a set is paired with itself only.
Example: For A = {a, b, c}, R = {(a, a), (b, b), (c, c)}
Reflexive Relation
Definition: Every element in the set is related to itself. It can also include other pairs, but the key requirement is that each element must relate to itself, such as (a, a), (b, b), etc.
Example: On A = {1, 2}, R = {(1, 1), (2, 2), (1, 2)}
Symmetric Relation
Definition: If a relates to b, then b relates to a
Example: R = {(2, 3), (3, 2) on (2, 3)}
Transitive Relation
Definition: A relation is called transitive if, whenever an element a is related to b, and b is related to c, then a must also be related to c.
Example: For a set A = {1, 2, 3}, the transitive relation is given as R = {(1, 2), (2, 3), (1, 3)}
Equivalence Relation
Definition: An equivalence relation is reflexive, symmetric, and transitive altogether.
Example: On the set of real numbers R, the relation “is equal to” (=) is an equivalence relation because:
Every number equals itself (reflexive)
If a = b, then b = a (symmetric)
If a = b and b = c, then a = c (transitive)
Antisymmetric Relation
Definition: A relation is antisymmetric if, whenever (a, b) and (b, a) are both in the relation, then it must be that a = b.
Example: Consider the relation "≤" (less than or equal to) on numbers.
If a ≤ b and b ≤ a, then the only way both can be true is if a = b.
So, "≤" is an antisymmetric relation.
Inverse Relation
Definition: The inverse of a relation is formed by reversing the order of each pair in the original relation.
Example: If R = {(1, 2), (3, 5)}, then the inverse relation R-1 = {(2, 1), (5, 3)}
Relations are built using elements from sets. A relation shows how elements from two sets connect. When you have two sets and need to see if any elements from either of those sets match or link, you use a relation. For example, an empty relation means that no elements from the two sets are connected—there are no matching pairs at all.
Key Formula for Relations and Their Types
Relations connect elements within a set or between two different sets. To determine a relation type, check three key properties: reflexive, where every element relates to itself, and symmetric. If a relates to b, then b relates to a, and transitive, where if a relates to b and b to c, then a relates to c. When a relation is reflexive, symmetric, and transitive, it is called an equivalence relation.
Roster (List) Form
Example: R = {(3, 9), (4, 16), (5, 25)}
Meaning: We list all related pairs between P and Q.
Arrow Diagram
Format: Draw arrows from each element in P to its corresponding square in Q
39
416
525
Meaning: A visual map showing who connects to whom.
Types of relations have many real-life applications. They are used in social networks, hierarchies, databases, and algorithms. Some of these applications are mentioned below:
Students make mistakes while working with relational types. They might incorrectly assume that all relations are symmetric or transitive, which can lead to wrong answers. To avoid this, here are some common mistakes and ways to avoid them.
Let A = {1, 2, 3} Let R = {(1, 1), (2, 2), (3, 3)}
Reflexive, symmetric, transitive.
Each element is related to itself → Reflexive
For every (a, a), the reverse (a, a) also exists → Symmetric
No chain violations; all possible (a, a) hold → Transitive
Let A = {1, 2, 3} Let R = {(1, 2), (1, 3), (2, 3)}
Transitive only
Not reflexive: missing (1,1), (2,2), (3,3)
Not symmetric: (1, 2) exists but (2, 1) doesn’t
Transitive: (1, 2) and (2, 3) imply (1, 3), which is included
Relation R on real numbers R, where xRy if x y
Transitive only
Not reflexive: no number is less than itself
Not symmetric: if x < y, then y is not < x
Transitive: if x < y and y < z, then x < z
Let R be congruence mod 3 on integers Z: xRy if x y (mod 3)
Reflexive, symmetric, transitive equivalence relation
x ≡ x mod 3 → Reflexive
If x ≡ y mod 3, then y ≡ x mod 3 → Symmetric
If x ≡ y and y ≡ z mod 3, then x ≡ z → Transitive
Let A = {1, 2, 3, 4} Relation R = {(x, y) | xy}
Reflexive, antisymmetric, transitivepartial order.
x ≤ x for all x → Reflexive
If x ≤ y and y ≤ x, then x = y → Antisymmetric
If x ≤ y and y ≤ z, then x ≤ z → Transitive