The first time you see (a, b) \in R scribbled in an algebra book, it looks like someone is hoarding commas. What is the pair doing? What does it mean for a pair to be in something? You already deal with pairs all day — your Aadhaar number and your name, a pincode and a city, a train number and its destination. A relation is just a list of such links, and (a, b) \in R is the mathematician's way of saying "a is on the list, paired with b, under the rule R."

Translating the symbol into a sentence

Reading $(a, b) \in R$

If R is a relation from set A to set B, then writing (a, b) \in R means exactly the same thing as saying "a is related to b by the rule R." Some books also write this as a\,R\,b — read aloud as "a stands in relation R to b."

Every relation is attached to a rule or description. The rule tells you which pairs make it onto the list. So:

  • If R is "is an elder sibling of" on a set of people, then (a, b) \in R says a is an elder sibling of b. Concretely, with a = Priya and b = Arjun, (\text{Priya}, \text{Arjun}) \in R would mean Priya is Arjun's elder sister.
  • If R is "divides" on natural numbers, then (a, b) \in R says a divides b. So (3, 12) \in R because 3 divides 12, but (3, 10) \notin R because 3 does not divide 10.
  • If R is "lives in the same pincode as" on a set of Delhi residents, then (a, b) \in R says a and b share a pincode.

The element a is on the left side of the pair and the element b is on the right. The order matters: (a, b) and (b, a) are two different statements unless R happens to be symmetric.

One rule, one list

Any relation can be written out as a list of pairs — that list is literally what R is as a set. The rule is a shorthand for generating the list, but the relation is the list itself.

Take A = \{2, 3, 4, 6\} and let R be "divides" on A. The rule tells you to write down every pair (a, b) where a divides b:

R = \{(2, 2),\, (2, 4),\, (2, 6),\, (3, 3),\, (3, 6),\, (4, 4),\, (6, 6)\}

Now (2, 6) \in R translates to "2 divides 6" — true. And (4, 6) \notin R translates to "4 does not divide 6" — also true. The in/out membership of pairs exactly tracks whether the real-world fact holds.

Interactive: pick a pair, read the fact

The seven ordered pairs of $R$ laid out on a number line. As you drag the slider, you are stepping through the statements "$2$ divides $2$," "$2$ divides $4$," "$2$ divides $6$," and so on. The list *is* the relation; each tick is one fact.

Translating in the other direction

Questions often hand you the rule and ask you to write down specific pair-memberships.

Suppose R is "has the same last digit as" on A = \{12, 17, 22, 35, 47\}.

  • (12, 22) \in R? Last digits are 2 and 2. Why: "12 has the same last digit as 22" is true, so the pair belongs. Yes, in.
  • (17, 47) \in R? Last digits 7 and 7. Yes, in.
  • (12, 35) \in R? Last digits 2 and 5. No, out.

The translation is purely mechanical: read the rule, check whether the two specific elements make it true, and declare the pair in or out.

When the pair tells a direction

Some relations are directional — (a, b) \in R does not mean the same thing as (b, a) \in R.

  • "is a parent of": (\text{Ramesh}, \text{Suresh}) \in R means Ramesh is Suresh's parent, which is different from Suresh being Ramesh's parent. The pair (\text{Suresh}, \text{Ramesh}) is a different claim.
  • "is greater than": (5, 3) \in R says 5 > 3 (true), but (3, 5) \in R would say 3 > 5 (false — not in R).

Other relations are symmetric — (a, b) \in R automatically forces (b, a) \in R.

  • "is a sibling of": if (a, b) is in, so is (b, a).
  • "has the same birthday as": same story.

The pair notation itself does not impose symmetry. The relation R decides, via its rule, whether order matters.

Three quick translations

Pair notation Plain-language meaning
(3, 12) \in \text{divides} Three divides twelve.
(12, 3) \notin \text{divides} Twelve does not divide three.
(\text{Aarav}, \text{Isha}) \in \text{classmate-of} Aarav is a classmate of Isha.
(5, 5) \in \text{equals} Five equals five.
(7, 2) \in \text{greater-than} Seven is greater than two.

Get comfortable reading the notation as an English sentence — it is the single skill that turns abstract relation problems into easy logic checks.

The "real-world" test for relation problems

When a problem defines a strange-looking relation like R = \{(a, b) \in \mathbb{Z} \times \mathbb{Z} \mid a - b \text{ is even}\}, convert to words first:

"Two integers are related if their difference is even."

Then specific questions become easy. Is (5, 1) \in R? Check 5 - 1 = 4, which is even. Yes, in. Is (7, 4) \in R? Check 7 - 4 = 3, which is odd. No, out.

You are reading a list of facts. The list just happens to be written with commas and curly braces instead of bullet points.

Related: Relations · Cartesian Product Grid · Ordered-Pair Plotter · Sets — Introduction