Difference between revisions of "1993 AIME Problems/Problem 8"

m (Solution 5)
Line 112: Line 112:
 
<cmath>6C0\cdot 2^5+6C1\cdot 2^4+\cdots +6C4\cdot 2+6C5\cdot 1+6C6\cdot 1.</cmath>
 
<cmath>6C0\cdot 2^5+6C1\cdot 2^4+\cdots +6C4\cdot 2+6C5\cdot 1+6C6\cdot 1.</cmath>
  
(Note that we have to be especially careful with the last case, as it does not follow the pattern of the other cases.) Adding these up gives a total of <math>\boxed{365}.</math>
+
(Note that we have to be especially careful with the last case, as it does not follow the pattern of the other cases.) Adding these up gives a total of <math>\boxed{365}.</math> ~vaporwave
  
 
== See also ==
 
== See also ==
 
{{AIME box|year=1993|num-b=7|num-a=9}}
 
{{AIME box|year=1993|num-b=7|num-a=9}}
 
{{MAA Notice}}
 
{{MAA Notice}}

Revision as of 21:54, 13 October 2022

Problem

Let $S\,$ be a set with six elements. In how many different ways can one select two not necessarily distinct subsets of $S\,$ so that the union of the two subsets is $S\,$? The order of selection does not matter; for example, the pair of subsets $\{a, c\},\{b, c, d, e, f\}$ represents the same selection as the pair $\{b, c, d, e, f\},\{a, c\}.$

Solution 1 (Overcounting)

Call the two subsets $m$ and $n.$ For each of the elements in $S,$ we can assign it to either $m,n,$ or both. This gives us $3^6$ possible methods of selection. However, because the order of the subsets does not matter, each possible selection is double counted, except the case where both $m$ and $n$ contain all $6$ elements of $S.$ So our final answer is then $\frac {3^6 - 1}{2} + 1 = \boxed{365}.$

Solution 2 (Overcounting)

Given one of ${6 \choose k}$ subsets with $k$ elements, the other also has $2^k$ possibilities; this is because it must contain all of the "missing" $n - k$ elements and thus has a choice over the remaining $k.$ We want $\sum_{k = 0}^6 {6 \choose k}2^k = (2 + 1)^6 = 729$ by the Binomial Theorem. But the order of the sets doesn't matter, so we get $\dfrac{729 - 1}{2} + 1 = \boxed{365}.$

Solution 3 (Recursion)

For all nonnegative integers $n,$ let $n$ be the number of elements in $S,$ and $f(n)$ be the number of unordered pairs $\{A,B\}$ of subsets of $S$ for which $A\cup B=S.$ We wish to find $f(6).$

Without the loss of generality, let the elements of $S$ be $1,2,\ldots,n.$ Based on the value of $n,$ we construct the following table: \[\begin{array}{c|c|c} & & \\ [-2.5ex] \boldsymbol{n} & \textbf{Unordered Pairs }\boldsymbol{\{A,B\}}\textbf{ of subsets of }\boldsymbol{S}\textbf{ for which }\boldsymbol{A\cup B=S} & \boldsymbol{f(n)} \\ [0.5ex] \hline & & \\ [-2ex] 0 & \{\varnothing,\varnothing\} & 1 \\ 1 & \{\{1\},\{1\}\}, \ \{\{1\},\varnothing\} & 2 \\ 2 & \color{red}\{\{1,2\},\{1,2\}\}\color{black}, \ \color{green}\{\{1,2\},\{1\}\}\color{black}, \ \color{blue}\{\{1,2\},\{2\}\}\color{black}, \ \color{cyan}\{\{1,2\},\varnothing\}\color{black}, \ \color{magenta}\{\{1\},\{2\}\} & 5 \\ 3 & \color{red}\{\{1,2,3\},\{1,2,3\}\}\color{black}, \ \color{red}\{\{1,2,3\},\{1,2\}\}\color{black}, \ \color{green}\{\{1,2,3\},\{1,3\}\}\color{black}, \ \color{green}\{\{1,2,3\},\{1\}\}\color{black}, \ \color{green}\{\{1,2\},\{1,3\}\}\color{black}, & 14 \\ & \color{blue}\{\{1,2,3\},\{2,3\}\}\color{black}, \ \color{blue}\{\{1,2,3\},\{2\}\}\color{black}, \ \color{blue}\{\{1,2\},\{2,3\}\}\color{black}, \ \color{cyan}\{\{1,2,3\},\{3\}\}\color{black}, \ \color{cyan}\{\{1,2,3\},\varnothing\}\color{black}, \ \color{cyan}\{\{1,2\},\{3\}\}\color{black}, & \\ & \color{magenta}\{\{1,3\},\{2,3\}\}\color{black}, \ \color{magenta}\{\{1,3\},\{2\}\}\color{black}, \ \color{magenta}\{\{1\},\{2,3\}\} & \\ \vdots & \vdots & \vdots  \end{array}\] Note that for all $n\geq1,$ each unordered pair of the $(n-1)$-element set contributes three unordered pairs to the $n$-element set, as the element $n$ can be added to either or both of the subsets. The only exception is that the unordered pair of identical subsets of the $(n-1)$-element set, namely $\{\{1,2,\ldots,n-1\},\{1,2,\ldots,n-1\}\},$ only contributes two unordered pairs to the $n$-element set. The table above shows this relationship between the $2$-element set and the $3$-element set.

Together, the recursive formula for $f(n)$ is \[f(n) = \begin{cases} 1 & \mathrm{if} \ n=0 \\ 3f(n-1)-1 & \mathrm{if} \ n\geq1 \end{cases}.\] Two solutions follow from here:

Solution 3.1 (Recursive Formula)

We evaluate $f(6)$ recursively: \begin{alignat*}{6} f(0)&=1, \\ f(1)&=3f(0)-1&&=2, \\ f(2)&=3f(1)-1&&=5, \\ f(3)&=3f(2)-1&&=14, \\ f(4)&=3f(3)-1&&=41, \\ f(5)&=3f(4)-1&&=122, \\ f(6)&=3f(5)-1&&=\boxed{365}. \end{alignat*} ~MRENTHUSIASM

Solution 3.2 (Explicit Formula)

For all $n\geq1,$ we have \begin{align*} f(n) &= 3f(n-1)-1 \\ &= 3\left(3f(n-2)-1\right)-1 \\ &= 3^2f(n-2)-3-1 \\ &= 3^2\left(3f(n-3)-1\right)-3-1 \\ &= 3^3f(n-3)-3^2-3-1 \\ & \ \vdots \\ &= 3^nf(0)-3^{n-1}-3^{n-2}-3^{n-3}-\cdots-1 \\ &= 3^n-\left(3^{n-1}+3^{n-2}+3^{n-3}+\cdots+1\right) \\ &= 3^n-\frac{3^n-1}{2} \\ &= \frac{3^n+1}{2} \\ &= \frac{3^n-1}{2}+1, \end{align*} which resembles the result in Solutions 1 and 2. The answer is $f(6)=\boxed{365}.$

As $f(0)=1,$ note that \[f(n)=\frac{3^n-1}{2}+1\] holds for $n=0$ too. Therefore, this formula is true for all nonnegative integers $n.$

~MRENTHUSIASM

Solution 4 (Bash)

If we wanted to, we could use casework, being very careful not to double count cases. Let's first figure out what cases we need to look at. The notation I will be using is $x\rightarrow y,$ which implies that we pick $x$ numbers for the first set which then the second set can have $y$ numbers.

Clearly: \begin{align*} 0&\rightarrow6 \\ 1&\rightarrow5\mid6 \\ 2&\rightarrow4\mid5\mid6 \\ 3&\rightarrow3\mid4\mid5\mid6 \\ 4&\rightarrow2\mid3\mid4\mid5\mid6 \\ 5&\rightarrow1\mid2\mid3\mid4\mid5\mid6 \\ 6&\rightarrow0\mid1\mid2\mid3\mid4\mid5\mid6 \end{align*} However notice that many of the cases are double counted as direction does not matter, e.g. $2\rightarrow4$ is the same as $4\rightarrow2.$ Get rid of those cases so we are just left with: \begin{align*} 0&\rightarrow6 \\ 1&\rightarrow5\mid6 \\ 2&\rightarrow4\mid5\mid6 \\ 3&\rightarrow3\mid4\mid5\mid6 \\ 4&\rightarrow4\mid5\mid6 \\ 5&\rightarrow5\mid6 \\ 6&\rightarrow6 \end{align*} Now we start computing, $0\rightarrow6$ is just $1$ case, $1\rightarrow5\mid6$ is just $\binom{6}{1}\cdot2$ cases, $2\rightarrow4\mid5\mid6$ is just $\binom{6}{2}\cdot2^2$ cases, and $3\rightarrow3\mid4\mid5\mid6$ is just $\binom{6}{3}\cdot2^3$ cases (If you have trouble understanding this, write down the six letters and then try to understand what $x\rightarrow y$ really means.). Now what you can do is continue on this same pattern like Solution 2 does, and then use simple symmetry to figure out the double counted cases. However, the purpose of this solution is to bash out the double counted cases, so we will do exactly that.

One quick thing though. We have a double counted case with the $3\rightarrow3,$ as choosing ABC and DEF is the same thing as choosing DEF and then ABC. There are $\frac{\binom{6}{3}}{2} = 10$ cases of this.

For computing $4\rightarrow4\mid5\mid6,$ we use the same process as before. We have $\binom{6}{4}\cdot(3+4+1)$ (Note, the $3$ comes from $\frac{\binom{4}{2}}{2}$), and for $5\rightarrow5\mid6$ we have $\binom{6}{5}\cdot\left(\frac{5}{2}+1\right),$ and then for $6\rightarrow6$ we just have $\binom{6}{6}$ (there is no double counted case since ABCDEF, ABCDEF is only counted once).

Summing case by case, we have $1+12+60+150+120+21+1 = \boxed{365}.$

Disclaimer: This is a terrible solution, it should only be done as practice for casework bashing and never should be done on a real AIME.

~Tost (Solution)

~MRENTHUSIASM (Reformatting)

Solution 5

We can perform casework based on the number of overlapping elements. If no elements overlap, there is $6C0=1$ way to choose the overlapping elements, and $2^{(6-0)}$ ways to distribute the remaining elements--each element can go in one subset or the other. We must also divide by $2$ because the order of the subsets does not matter. Proceeding similarly for the other cases, our sum is

\[6C0\cdot 2^5+6C1\cdot 2^4+\cdots +6C4\cdot 2+6C5\cdot 1+6C6\cdot 1.\]

(Note that we have to be especially careful with the last case, as it does not follow the pattern of the other cases.) Adding these up gives a total of $\boxed{365}.$ ~vaporwave

See also

1993 AIME (ProblemsAnswer KeyResources)
Preceded by
Problem 7
Followed by
Problem 9
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
All AIME Problems and Solutions

The problems on this page are copyrighted by the Mathematical Association of America's American Mathematics Competitions. AMC logo.png