A relation R on a set A is reflexive if every element relates to itself: for every a \in A, the pair (a, a) belongs to R. In the directed-graph picture of the relation, this has one crisp visual signature — every node has a self-loop. Miss a single loop and reflexivity is broken. This article builds the visual reflex for spotting that failure instantly.
The picture that defines reflexivity
Draw a node for every element of A. Draw an arrow (loop) from a node to itself whenever (a, a) \in R. The relation is reflexive if and only if every single node has its self-loop drawn. No exceptions.
The six cases the slider walks through
Case 0 — the empty relation. No arrows, no loops. Every element fails. Not reflexive.
Case 1 — only (1, 1). One self-loop out of four required. Not reflexive. Three nodes glow red.
Case 2 — the identity relation, \{(1, 1), (2, 2), (3, 3), (4, 4)\}. Every node has its loop. Reflexive. In fact this is the smallest reflexive relation on A — you cannot have fewer pairs than this and still be reflexive.
Case 3 — the relation shown in the figure, \{(1, 1), (3, 3), (1, 2), (2, 4)\}. Loops on 1 and 3, none on 2 or 4. Not reflexive. The extra pairs (1, 2) and (2, 4) are irrelevant to reflexivity — they don't compensate for missing self-loops.
Case 4 — "a \leq b" on \{1, 2, 3, 4\}. Every element is \leq itself, so self-loops all exist: (1,1), (2,2), (3,3), (4,4) are all in the relation. Reflexive. The non-loop arrows (1 \to 2, 1 \to 3, etc.) are present too, but they don't affect the reflexivity check.
Case 5 — "a < b" on \{1, 2, 3, 4\}. No element is strictly less than itself. Zero self-loops. Not reflexive. The relation is instead irreflexive — the opposite extreme.
The visual rule, in one line
Reflexive ⟺ every node has a self-loop.
The check is purely mechanical. Scan every node. Miss a loop, miss reflexivity.
Why: the definition of reflexivity is universally quantified — "for every a \in A, (a, a) \in R." Universal quantifiers fail on a single counter-example. One element with no self-loop is one counter-example, which is enough to falsify the whole statement.
What reflexivity does not require
Beginners often confuse reflexivity with other properties. The reflexive test is only about self-loops:
- It says nothing about whether non-self arrows are present or absent. You can have many extra pairs (a, b) with a \neq b and still be reflexive, as long as every self-loop is there.
- It does not require symmetry. Reflexivity is orthogonal to the "every arrow has a reverse" check.
- It does not require transitivity either. A reflexive relation can be badly intransitive; that is a separate property.
Smallest reflexive relation on A: the identity \{(a, a) : a \in A\}. This is the unique relation that is reflexive and nothing else — no extra arrows.
Largest reflexive relation on A: the full product A \times A, which has every possible arrow including every self-loop.
Any relation in between is reflexive iff the self-loops survive, regardless of which non-self arrows you keep or discard.
The grid view of reflexivity
The relation can also be drawn as filled cells on an |A| \times |A| grid, with rows and columns labelled by elements of A. In that picture:
Reflexive ⟺ every cell on the main diagonal is filled.
The main diagonal runs from top-left to bottom-right: cells (1, 1), (2, 2), (3, 3), (4, 4). If all of these are filled, reflexivity holds. If even one diagonal cell is empty, reflexivity fails — regardless of what happens off-diagonal.
This "diagonal filled" view is faster to eyeball for large sets than scanning a forest of self-loops in a graph. For small sets, the self-loop picture is more intuitive.
Reflexive vs irreflexive vs neither
The slider's cases hint at three bins:
- Reflexive: every diagonal cell filled. Every self-loop drawn.
- Irreflexive: no diagonal cell filled. No self-loops drawn. The relation "a < b" is the canonical irreflexive example.
- Neither: some self-loops present, some absent. This is the "mixed" middle ground — you are neither universally reflexive nor universally loop-free.
Many natural relations fall into this middle category, especially when you build them up piecewise. In JEE problems you should not assume "not reflexive" means "irreflexive" — it usually means "missing at least one self-loop," which is a weaker condition.
Spotting the failure in a list
Problems often give you a relation as a list of pairs, like
and ask, "Is R reflexive on A = \{1, 2, 3, 4\}?"
Reflex: find every self-loop in the list. (1, 1): yes. (2, 2): missing. (3, 3): yes. (4, 4): missing. Two missing self-loops — not reflexive. Done in seven seconds.
The trick is to read the list only for self-loops on the first pass, ignoring every other pair. The other pairs cannot compensate for or invalidate a missing self-loop. This is a purely visual, single-axis check.
Training the reflex
- For any relation R on a finite set A, list the self-loops first. Then tick them off against the elements of A.
- If every element has its self-loop, reflexivity holds. Otherwise, you have a counter-example (any element whose self-loop is missing).
- In an exam, write down A = \{a_1, a_2, \ldots\} on rough paper. Then cross out each a_i for which (a_i, a_i) \in R. A surviving element is a counter-example.
That is the whole method. Reflexivity becomes a checklist, not a theorem — and the checklist is visible in the picture.
Related: Relations · Symmetry Check: Missing Reverse Arrows Glow Red · Arrow-Diagram Builder: Every Arrow Is a Pair · Ordered-Pair Plotter: Relation on a Grid