The Elegance of Independence
Unlocking Relations
Welcome, future engineers! Today, we are going to peel back the layers of a classic JEE Advanced problem on relations. It might look like a daunting task of counting hundreds of possibilities, but as we will see, the beauty of mathematics lies in finding the hidden simplicity within complexity.
Let us embark on this journey together.
Phase 1
Deconstructing the Relation
We are given two sets, A={1,3,4,6,9} and B={2,4,5,8,10}. We define a relation R on the Cartesian product (A×B)×(A×B).
The relation connects a pair ((a1,b1),(a2,b2)) if and only if a1≤b2 and b1≤a2. At first glance, this looks like a tangled web of variables.
However, the condition a1≤b2 only involves a1 and b2, while b1≤a2 only involves b1 and a2. These two conditions are completely independent.
Because they are independent, the total number of elements in R is simply the product of the number of valid pairs for each condition:
∣R∣=(Number of pairs (a1,b2) s.t. a1≤b2)×(Number of pairs (b1,a2) s.t. b1≤a2)
Phase 2
The Art of Systematic Counting
Now, let us tackle the first condition: a1≤b2. We iterate through each a1∈A and count the valid b2∈B:
If a1=1, then b2∈{2,4,5,8,10} (5 cases).
If a1=3, then b2∈{4,5,8,10} (4 cases).
If a1=4, then b2∈{4,5,8,10} (4 cases).
If a1=6, then b2∈{8,10} (2 cases).
* If a1=9, then b2∈{10} (1 case).
Summing these up, we get 5+4+4+2+1=16. We have successfully counted 16 valid pairs for the first condition.
Phase 3
The Second Condition
Next, we repeat this for the second condition: b1≤a2, where b1∈B and a2∈A:
If b1=2, then a2∈{3,4,6,9} (4 cases).
If b1=4, then a2∈{4,6,9} (3 cases).
If b1=5, then a2∈{6,9} (2 cases).
If b1=8, then a2∈{9} (1 case).
* If b1=10, there are no elements in A such that 10≤a2 (0 cases).
Summing these up, we get 4+3+2+1+0=10. We have 10 valid pairs for the second condition.
Final Calculation
We have found 16 ways to satisfy the first condition and 10 ways to satisfy the second. Since these are independent, we multiply them:
There are exactly 160 elements in the relation R. See how the complexity vanished once we identified the independence? Keep this mindset, and you will conquer any problem JEE throws at you!