For A={1,2,3,4} find number of symmetric relations

medium CBSE JEE-MAIN 3 min read

Question

If A={1,2,3,4}A = \{1, 2, 3, 4\}, find the total number of symmetric relations on AA.

Solution — Step by Step

A relation RR on a set AA is symmetric if: for every (a,b)R(a, b) \in R, we also have (b,a)R(b, a) \in R.

In other words: if the relation includes the ordered pair (a,b)(a, b), it must also include (b,a)(b, a). If a=ba = b (a diagonal element like (1,1)(1, 1)), then the condition is automatically satisfied since (a,a)(a, a) is its own “pair.”

A=4|A| = 4, so A×A=16|A \times A| = 16 ordered pairs in total.

These 16 pairs split into two categories:

Diagonal pairs (where a=ba = b): (1,1),(2,2),(3,3),(4,4)(1,1), (2,2), (3,3), (4,4) — 4 pairs

Off-diagonal pairs (where aba \neq b): The remaining 164=1216 - 4 = 12 pairs.

These 12 off-diagonal pairs group into 6 symmetric pairs (also called “partner pairs”):

  • {(1,2),(2,1)}\{(1,2), (2,1)\}
  • {(1,3),(3,1)}\{(1,3), (3,1)\}
  • {(1,4),(4,1)}\{(1,4), (4,1)\}
  • {(2,3),(3,2)}\{(2,3), (3,2)\}
  • {(2,4),(4,2)}\{(2,4), (4,2)\}
  • {(3,4),(4,3)}\{(3,4), (4,3)\}

Number of symmetric (unordered) pairs = n(n1)2=4×32=6\dfrac{n(n-1)}{2} = \dfrac{4 \times 3}{2} = 6

To build a symmetric relation:

For each diagonal pair (a,a)(a, a): We can either include it or exclude it independently. There are 4 diagonal pairs → 242^4 choices.

For each off-diagonal symmetric pair {(a,b),(b,a)}\{(a,b), (b,a)\}: We must either include BOTH or exclude BOTH (to maintain symmetry). We cannot include just one. There are 6 such pairs → 262^6 choices.

These choices are independent of each other.

Total symmetric relations = (choices for diagonal pairs) × (choices for off-diagonal symmetric pairs)

=24×26=24+6=210=1024= 2^4 \times 2^6 = 2^{4+6} = 2^{10} = 1024

For a set AA with A=n|A| = n:

  • Number of diagonal pairs = nn
  • Number of off-diagonal symmetric pairs = n(n1)2\dfrac{n(n-1)}{2}
  • Total choices = 2n×2n(n1)2=2n+n(n1)2=2n(n+1)22^n \times 2^{\frac{n(n-1)}{2}} = 2^{n + \frac{n(n-1)}{2}} = 2^{\frac{n(n+1)}{2}}

For n=4n = 4: 24×52=210=10242^{\frac{4 \times 5}{2}} = 2^{10} = 1024

Answer: 1024 symmetric relations

Why This Works

The key insight is that symmetry is a “paired constraint” — it doesn’t restrict whether a pair is included, only that partners must travel together. This is why we count independently: each diagonal element is a free choice, and each off-diagonal pair is a single binary choice (both in, or both out).

Compare this with reflexive relations (where all diagonal elements must be included: 2n2n2^{n^2 - n} choices) or arbitrary relations (2n22^{n^2} total subsets of A×AA \times A).

Alternative Method

Total subsets of A×AA \times A = 2162^{16}. Of these, we want only those that are symmetric. We use the formula directly:

Symmetric relations on a set of size n=2n(n+1)2\text{Symmetric relations on a set of size } n = 2^{\frac{n(n+1)}{2}}

For n=4n = 4: 24×52=210=10242^{\frac{4 \times 5}{2}} = 2^{10} = 1024.

For CBSE Class 12 and JEE, also know: number of reflexive relations = 2n2n2^{n^2 - n}; number of reflexive and symmetric relations = 2n(n1)22^{\frac{n(n-1)}{2}} (diagonal elements must all be included, off-diagonal pairs free). These formulas come up as MCQs very frequently.

Common Mistake

The most common error is treating all n2n^2 pairs as independent. Students compute 2n2/22^{n^2/2} instead of 2n(n+1)22^{\frac{n(n+1)}{2}}, forgetting that diagonal elements also have a free choice (each diagonal pair is independent of its partner, since it has no separate partner). Always split into diagonal and off-diagonal before counting.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next