PRMO 2014 question 20, subset counting
20. What is the number of ordered pairs where and are subsets of such that neither nor ?
[PRE-RMO–2014]
A wrong approach:
Let's partition the numbers into 2 sets.
First set has 1 element, second has 4 elements. Total ways to do this = 5C1 * 2 = 10. 5C1 since there are 5C1 ways to choose the set with 1 element. *2 because these are ordered pairs.
Similarly, let's partition the numbers such that first set has 2 elements, second set has 3 elements.
Again, 5C2*2 = 20.
So total 30 ways.
Why is this wrong?
Because we didn't count the cases when a number is not present in either set + when a number is present in both the sets.
For e.g. A = {2}, B = {3,4} is a valid case.
A = {2,3}, B = {1,2} is also valid.
So what's the correct approach?
Via the “four‐color” method. Label each element of according to whether it is
-
in neither nor ,
-
in only,
-
in only, or
-
in both and .
There are possible statuses for each of the elements, giving a total of ways to form an ordered pair .
To ensure that neither nor , we need at least one element of type 2 (an element in only) and at least one of type 3 (an element in only). Use inclusion–exclusion:
-
Total configurations: .
-
Subtract those with no type 2 element (so only types 1, 3, 4 are used): .
-
Subtract those with no type 3 element (so only types 1, 2, 4 are used): another .
-
Add back those with neither type 2 nor type 3 (so only types 1, 4 are used): .
Hence the count is
Therefore, the number of ordered pairs with neither nor is
Comments
Post a Comment