返回题库

AIME 2010 II · 第 8 题

AIME 2010 II — Problem 8

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

Let NN be the number of ordered pairs of nonempty sets A\mathcal{A} and B\mathcal{B} that have the following properties:

  • AB={1,2,3,4,5,6,7,8,9,10,11,12}\mathcal{A} \cup \mathcal{B} = \{1,2,3,4,5,6,7,8,9,10,11,12\},
  • AB=\mathcal{A} \cap \mathcal{B} = \emptyset,
  • The number of elements of A\mathcal{A} is not an element of A\mathcal{A},
  • The number of elements of B\mathcal{B} is not an element of B\mathcal{B}.

Find NN.

解析

Solution

Let us partition the set {1,2,,12}\{1,2,\cdots,12\} into nn numbers in AA and 12n12-n numbers in BB,

Since nn must be in BB and 12n12-n must be in AA (n6n\ne6, we cannot partition into two sets of 6 because 66 needs to end up somewhere, n0n\ne 0 or 1212 either).

We have (10n1)\dbinom{10}{n-1} ways of picking the numbers to be in AA.

So the answer is (n=111(10n1))(105)=210252=772\left(\sum_{n=1}^{11} \dbinom{10}{n-1}\right) - \dbinom{10}{5}=2^{10}-252= \boxed{772}.

Note: We have (10n1)\dbinom{10}{n-1} ways of picking the numbers to be in AA because there are nn numbers in AA and since 12n12-n is already a term in the set we simply have to choose another n1n-1 numbers from the 1010 numbers that are available.

Solution 2

Regardless of the size nn of AA (ignoring the case when n=6n = 6), nn must not be in AA and 12n12 - n must be in AA.

There are 1010 remaining elements whose placements have yet to be determined. Note that the actual value of nn does not matter; there is always 11 necessary element, 11 forbidden element, and 1010 other elements that need to be distributed. There are 22 places to put each of these elements, for 2102^{10} possibilities.

However, there is the edge case of n=6;6n = 6; 6 is forced not to be in either set, so we must subtract the (105)\dbinom{10}{5} cases where AA and BB have size 66.

Thus, our answer is 210(105)=1024252=7722^{10} - \dbinom{10}{5} = 1024 - 252 = \boxed{772}

Solution 3 (PIE and Complementary Counting)

The total number of possible subsets is i=111(12i)\sum_{i=1}^{11}\dbinom{12}{i}, which is 21222^{12}-2. Note that picking a subset from the set leaves the rest of the set to be in the other subset. We exclude i=0i=0 and i=12i=12 since they leave a set empty. We proceed with complementary counting and casework:

We apply the Principle of Inclusion and Exclusion for casework on the complementary cases. We find the ways where A|A| is in AA, which violates the first condition. Then we find the ways where the elements B|B| and 12B12-|B| are in set BB, which violates only the second condition, and not the first. This ensures we do not overcount.

Case 1: A|A| is an element in AA

There are i=111(11i1)\sum_{i=1}^{11}\dbinom{11}{i-1} = 21112^{11}-1 ways in this case.

Case 2: B|B| and 12B12-|B| are in BB

We introduce a subcase where B|B| is not 6, since the other element would also be 6. There are B2B-2 elements to choose from 10 elements. Therefore, B|B| can be from 2 to 11. There are i=211(10i2)(104)=210211\sum_{i=2}^{11}\dbinom{10}{i-2}-\dbinom{10}{4} = 2^{10}-211 ways. The other subcase is when B|B| is equal to 6. There are (115)=462\dbinom{11}{5}=462 ways. Adding the subcases gives us 210+2512^{10}+251.

Adding this with case one gives us 211+210+2502^{11}+2^{10}+250. Subtracting this from 21222^{12}-2 gives 1024252=7721024-252=\boxed{772}.

~Magnetoninja

Solution 4 (Not the best solution- Casework)

Case 1: Set A has 1 element. Set B has 11 elements. 11 must be in set A, so there is 11 way.

Case 2: Set A has 2 elements. Set B has 10 elements. 10 must be in set A, and 2 must not be in set A, so there is 1(101)1\cdot\binom{10}{1} (for the remaining element).

Case 3: Set A has 3 elements. Set B has 9 elements. 9 must be in set A, and 3 must not be in set A, so there is 1(102)1\cdot\binom{10}{2} (for the remaining elements).

Case 4: Set A has 4 elements. Set B has 8 elements. 8 must be in set A, and 4 must not be in set A, so there is 1(103)1\cdot\binom{10}{3} (for the remaining element).

Case 5: Set A has 5 elements. Set B has 7 elements. 7 must be in set A, and 5 must not be in set A, so there is 1(104)1\cdot\binom{10}{4} (for the remaining element).

There is no Case 6 because 66 can't go in set A and can't go in set B. Cases 7 to 11 are symmetric, so add up the 5 cases and multiply by 22 to get 772\boxed{772}.

-unhappyfarmer

  • Note by Voidling: After the first couple of cases, you may be able to find a pattern, where case n has (10n1)\binom{10}{n-1} possibilities, so you could just find 2n=15(10n1)2\cdot\sum_{n=1}^{5}\binom{10}{n-1}. This can be proved because for each case, if set A has nn elements, then out of these n elements, one of which must be 12n12-n, there are 10 choices remaining, as none of the elements may equal nn either. Therefore, if A has n elements, then there are (10n1)\binom{10}{n-1} different possibilities for set A.