Difference between revisions of "2021 AIME II Problems/Problem 8"

m (Solution 1 (Recursion))
m (Solution 1 (Recursion))
(45 intermediate revisions by 2 users not shown)
Line 3: Line 3:
  
 
==Solution 1 (Recursion)==
 
==Solution 1 (Recursion)==
The way we approach the problem is, we need a chart for the possible outcomes of the ant. We are trying to find the probability the ant is on the top of the cube, so let's make the chart. Let BO be "Base but originally there", BG "Base but just got there, NO, and NG. The  first choice is easy to compute. There is one choice to go on top, and 2 choices to go on the bottom.
+
For all positive integers <math>k,</math> let
  
<cmath>\begin{array}{c||c|c|c|c|c|c|c|c} 
+
* <math>N(k,\mathrm{BB})</math> be the number of ways to make a sequence of exactly <math>k</math> moves, where the last move is from the bottom face to the bottom face.
\textbf{\# of Steps} & \boldsymbol{1} & \boldsymbol{2} & \boldsymbol{3} & \boldsymbol{4} & \boldsymbol{5} & \boldsymbol{6} & \boldsymbol{7} & \boldsymbol{8} \\ \hline \hline 
+
 
\textbf{BB} &2&&&&&&& \\ \hline 
+
* <math>N(k,\mathrm{BT})</math> be the number of ways to make a sequence of exactly <math>k</math> moves, where the last move is from the bottom face to the top face.
\textbf{BT} &1&&&&&&& \\ \hline
+
 
\textbf{TB} &0&&&&&&& \\ \hline 
+
* <math>N(k,\mathrm{TB})</math> be the number of ways to make a sequence of exactly <math>k</math> moves, where the last move is from the top face to the bottom face.
\textbf{TT} &0&&&&&&& 
+
 
\end{array}</cmath>
+
* <math>N(k,\mathrm{TT})</math> be the number of ways to make a sequence of exactly <math>k</math> moves, where the last move is from the top face to the top face.
  
We can keep doing this process, until the 8th step.  
+
The base case occurs at <math>k=1,</math> from which <math>\left(N(1,\mathrm{BB}),N(1,\mathrm{BT}),N(1,\mathrm{TB}),N(1,\mathrm{TT})\right)=(2,1,0,0).</math>
  
 +
Suppose the ant makes exactly <math>k</math> moves. We will perform casework on its last move:
 +
<ol style="margin-left: 1.5em;">
 +
  <li>If its last move is from the bottom face to the bottom face, then its next move has</li><p>
 +
<ul style="margin-left: 1.5em; list-style-type: circle">
 +
  <li><math>1</math> way to move from the bottom face to the bottom face.</li><p>
 +
  <li><math>1</math> way to move from the bottom face to the top face.</li><p>
 +
</ul>
 +
  <li>If its last move is from the bottom face to the top face, then its next move has <math>2</math> ways to move from the top face to the top face.</li><p>
 +
  <li>If its last move is from the top face to the bottom face, then its next move has <math>2</math> ways to move from the bottom face to the bottom face.</li><p>
 +
  <li>If its last move is from the top face to the top face, then its next move has<p>
 +
<ul style="margin-left: 1.5em; list-style-type: circle">
 +
  <li><math>1</math> way to move from the top face to the bottom face.</li><p>
 +
  <li><math>1</math> way to move from the top face to the top face.</li><p>
 +
</ul>
 +
</ol>
 +
Alternatively, this recursion argument is illustrated below, where each dashed arrow indicates <math>1</math> way, and each solid arrow indicates <math>2</math> ways:
 +
<asy>
 +
/* Made by MRENTHUSIASM */
 +
size(9cm);
 +
pair A, B, C, D, E, F, G, H, X, Y;
 +
A=(0,6);
 +
B=(0,4);
 +
C=(0,2);
 +
D=(0,0);
 +
E=(10,6);
 +
F=(10,4);
 +
G=(10,2);
 +
H=(10,0);
 +
X=(-1,8);
 +
Y=(11,8);
 +
label("BB", A, (-2,0));
 +
label("BT", B, (-2,0));
 +
label("TB", C, (-2,0));
 +
label("TT", D, (-2,0));
 +
label("BB", E, (2,0));
 +
label("BT", F, (2,0));
 +
label("TB", G, (2,0));
 +
label("TT", H, (2,0));
 +
label("\textbf{The \boldmath{$k$}th Move}", shift(0.3,0)*X);
 +
label("\textbf{The \boldmath{$(k+1)$}th Move}", shift(-0.3,-0.085)*Y);
 +
draw(A--E,0.8+black+dashed,EndArrow);
 +
draw(A--F,0.8+black+dashed,EndArrow);
 +
draw(B--H,0.8+black,EndArrow);
 +
draw(C--E,0.8+black,EndArrow);
 +
draw(D--G,0.8+black+dashed,EndArrow);
 +
draw(D--H,0.8+black+dashed,EndArrow);
 +
dot(A^^B^^C^^D^^E^^F^^G^^H, 5+black);
 +
</asy>
 +
Therefore, we have the following relationships:
 +
<cmath>\begin{align*}
 +
N(1,\mathrm{BB})&=2, \\
 +
N(1,\mathrm{BT})&=1, \\
 +
N(1,\mathrm{TB})&=0, \\
 +
N(1,\mathrm{TT})&=0, \\
 +
N(k+1,\mathrm{BB})&=N(k,\mathrm{BB})+2\cdot N(k,\mathrm{TB}), \\
 +
N(k+1,\mathrm{BT})&=N(k,\mathrm{BB}), \\
 +
N(k+1,\mathrm{TB})&=N(k,\mathrm{TT}), \\
 +
N(k+1,\mathrm{TT})&=N(k,\mathrm{TT})+2\cdot N(k,\mathrm{BT}).
 +
\end{align*}</cmath>
 +
Using these equations, we recursively fill out the table below:
 
<cmath>\begin{array}{c||c|c|c|c|c|c|c|c}   
 
<cmath>\begin{array}{c||c|c|c|c|c|c|c|c}   
\textbf{\# of Steps} & \boldsymbol{1} & \boldsymbol{2} & \boldsymbol{3} & \boldsymbol{4} & \boldsymbol{5} & \boldsymbol{6} & \boldsymbol{7} & \boldsymbol{8} \\ \hline \hline  
+
\hspace{7mm}&\hspace{6.5mm}&\hspace{6.5mm}&\hspace{6.75mm}&\hspace{6.75mm}&\hspace{6.75mm}&\hspace{6.75mm}&& \\ [-2.5ex]
\textbf{BB} &2&2&2&6&18&38&66&118 \\ \hline   
+
\boldsymbol{k} & \boldsymbol{1} & \boldsymbol{2} & \boldsymbol{3} & \boldsymbol{4} & \boldsymbol{5} & \boldsymbol{6} & \boldsymbol{7} & \boldsymbol{8} \\  
\textbf{BT} &1&2&2&2&6&18&38&66 \\ \hline  
+
\hline \hline
\textbf{TB} &0&0&2&6&10&14&26&62 \\ \hline   
+
&&&&&&&& \\ [-2.25ex]
\textbf{TT} &0&2&6&10&14&26&62&138  
+
\boldsymbol{N(k,\mathrm{BB})} &2&2&2&6&18&38&66&118 \\ \hline   
 +
&&&&&&&& \\ [-2.25ex]
 +
\boldsymbol{N(k,\mathrm{BT})} &1&2&2&2&6&18&38&66 \\ \hline  
 +
&&&&&&&& \\ [-2.25ex]
 +
\boldsymbol{N(k,\mathrm{TB})} &0&0&2&6&10&14&26&62 \\ \hline   
 +
&&&&&&&& \\ [-2.25ex]
 +
\boldsymbol{N(k,\mathrm{TT})} &0&2&6&10&14&26&62&138 \\
 +
\hline \hline
 +
&&&&&&&& \\ [-2.25ex]
 +
\textbf{Total}&\boldsymbol{3}&\boldsymbol{6}&\boldsymbol{12}&\boldsymbol{24}&\boldsymbol{48}&\boldsymbol{96}&\boldsymbol{192}&\boldsymbol{384}
 
\end{array}</cmath>
 
\end{array}</cmath>
 +
Clearly, there are <math>3\cdot2^{k-1}</math> ways to make exactly <math>k</math> moves. To guarantee correctness, note that for each value of <math>k,</math> the four counts in that column must total up to <math>3\cdot2^{k-1}.</math>
  
Since we want the fraction when the ant is on top, <math>\dfrac{204}{384}=\dfrac{17}{32}</math>. Our answer is <math>17 + 32 = \boxed{049}.</math>
+
Finally, the requested probability is <cmath>\frac{N(8,\mathrm{BT})+N(8,\mathrm{TT})}{N(8,\mathrm{BB})+N(8,\mathrm{BT})+N(8,\mathrm{TB})+N(8,\mathrm{TT})}=\frac{66+138}{118+66+62+138}=\frac{204}{384}=\frac{17}{32},</cmath> from which the answer is <math>17+32=\boxed{049}.</math>
  
~Arcticturn (Primary)
+
~Arcticturn (Fundamental Logic)
  
~MRENTHUSIASM (Secondary)
+
~MRENTHUSIASM (Reconstruction)
  
 
==Solution 2 (Casework)==
 
==Solution 2 (Casework)==
Line 41: Line 111:
  
 
Our probability is then <math>\frac{176 + 28}{3 \cdot 2^7} = \frac{17}{32} \iff \boxed{049}</math>.
 
Our probability is then <math>\frac{176 + 28}{3 \cdot 2^7} = \frac{17}{32} \iff \boxed{049}</math>.
 +
 +
==Solution 3 (Faster Recursion)==
 +
Define <math>n_i</math> to be the probability that after <math>i</math> moves, the ant ends up on the level it started on (assuming the first move is a normal move where the ant can stay or move to the opposite level with half chance each). Note <math>n_0 = 1</math> and <math>n_1 = \frac{1}{2}</math>.
 +
 +
Consider when the ant has <math>i</math> moves left. It can either stay on its current level with <math>\frac{1}{2}</math> chance and <math>i - 1</math> moves left, or travel to the opposite level with <math>\frac{1}{2}</math> chance and <math>i - 2</math> moves left (it must spend another move as it cannot travel back immediately). We then have the recurrence
 +
<cmath>n_i = \frac{1}{2}n_{i - 1} + \frac{1}{2}(1 - n_{i - 2})</cmath>
 +
 +
On the first move, the ant can stay on the bottom level with <math>\frac{2}{3}</math> chance and <math>7</math> moves left. Or, it can move to the top level with <math>\frac{1}{3}</math> chance and <math>6</math> moves left (it has to spend one on the top as it can not return immediately). So the requested probability is <math>P = \frac{2}{3}(1 - n_7) + \frac{1}{3}n_6</math>.
 +
 +
Computing <math>n_i</math> we get <math>n_6 = \frac{33}{64}</math> and <math>n_7 = \frac{59}{128}</math>, resulting in <math>P = \frac{17}{32} \iff \boxed{049}</math>.
 +
 +
~IAmLegend (1e9end.github.io)
  
 
==See also==
 
==See also==
 
{{AIME box|year=2021|n=II|num-b=7|num-a=9}}
 
{{AIME box|year=2021|n=II|num-b=7|num-a=9}}
 
{{MAA Notice}}
 
{{MAA Notice}}

Revision as of 18:26, 6 April 2021

Problem

An ant makes a sequence of moves on a cube where a move consists of walking from one vertex to an adjacent vertex along an edge of the cube. Initially the ant is at a vertex of the bottom face of the cube and chooses one of the three adjacent vertices to move to as its first move. For all moves after the first move, the ant does not return to its previous vertex, but chooses to move to one of the other two adjacent vertices. All choices are selected at random so that each of the possible moves is equally likely. The probability that after exactly 8 moves that ant is at a vertex of the top face on the cube is $\frac{m}{n}$, where $m$ and $n$ are relatively prime positive integers. Find $m + n.$

Solution 1 (Recursion)

For all positive integers $k,$ let

  • $N(k,\mathrm{BB})$ be the number of ways to make a sequence of exactly $k$ moves, where the last move is from the bottom face to the bottom face.
  • $N(k,\mathrm{BT})$ be the number of ways to make a sequence of exactly $k$ moves, where the last move is from the bottom face to the top face.
  • $N(k,\mathrm{TB})$ be the number of ways to make a sequence of exactly $k$ moves, where the last move is from the top face to the bottom face.
  • $N(k,\mathrm{TT})$ be the number of ways to make a sequence of exactly $k$ moves, where the last move is from the top face to the top face.

The base case occurs at $k=1,$ from which $\left(N(1,\mathrm{BB}),N(1,\mathrm{BT}),N(1,\mathrm{TB}),N(1,\mathrm{TT})\right)=(2,1,0,0).$

Suppose the ant makes exactly $k$ moves. We will perform casework on its last move:

  1. If its last move is from the bottom face to the bottom face, then its next move has
    • $1$ way to move from the bottom face to the bottom face.
    • $1$ way to move from the bottom face to the top face.
  2. If its last move is from the bottom face to the top face, then its next move has $2$ ways to move from the top face to the top face.
  3. If its last move is from the top face to the bottom face, then its next move has $2$ ways to move from the bottom face to the bottom face.
  4. If its last move is from the top face to the top face, then its next move has

    • $1$ way to move from the top face to the bottom face.
    • $1$ way to move from the top face to the top face.

Alternatively, this recursion argument is illustrated below, where each dashed arrow indicates $1$ way, and each solid arrow indicates $2$ ways: [asy] /* Made by MRENTHUSIASM */  size(9cm);  pair A, B, C, D, E, F, G, H, X, Y;  A=(0,6);  B=(0,4);  C=(0,2);  D=(0,0);  E=(10,6);  F=(10,4);  G=(10,2);  H=(10,0);  X=(-1,8);  Y=(11,8);  label("BB", A, (-2,0));  label("BT", B, (-2,0));  label("TB", C, (-2,0));  label("TT", D, (-2,0));  label("BB", E, (2,0));  label("BT", F, (2,0));  label("TB", G, (2,0));  label("TT", H, (2,0));  label("\textbf{The \boldmath{$k$}th Move}", shift(0.3,0)*X);  label("\textbf{The \boldmath{$(k+1)$}th Move}", shift(-0.3,-0.085)*Y);  draw(A--E,0.8+black+dashed,EndArrow);  draw(A--F,0.8+black+dashed,EndArrow);  draw(B--H,0.8+black,EndArrow);  draw(C--E,0.8+black,EndArrow);  draw(D--G,0.8+black+dashed,EndArrow);  draw(D--H,0.8+black+dashed,EndArrow);  dot(A^^B^^C^^D^^E^^F^^G^^H, 5+black); [/asy] Therefore, we have the following relationships: \begin{align*} N(1,\mathrm{BB})&=2, \\  N(1,\mathrm{BT})&=1, \\ N(1,\mathrm{TB})&=0, \\ N(1,\mathrm{TT})&=0, \\ N(k+1,\mathrm{BB})&=N(k,\mathrm{BB})+2\cdot N(k,\mathrm{TB}), \\ N(k+1,\mathrm{BT})&=N(k,\mathrm{BB}), \\ N(k+1,\mathrm{TB})&=N(k,\mathrm{TT}), \\ N(k+1,\mathrm{TT})&=N(k,\mathrm{TT})+2\cdot N(k,\mathrm{BT}). \end{align*} Using these equations, we recursively fill out the table below: \[\begin{array}{c||c|c|c|c|c|c|c|c}    \hspace{7mm}&\hspace{6.5mm}&\hspace{6.5mm}&\hspace{6.75mm}&\hspace{6.75mm}&\hspace{6.75mm}&\hspace{6.75mm}&& \\ [-2.5ex] \boldsymbol{k} & \boldsymbol{1} & \boldsymbol{2} & \boldsymbol{3} & \boldsymbol{4} & \boldsymbol{5} & \boldsymbol{6} & \boldsymbol{7} & \boldsymbol{8} \\  \hline \hline &&&&&&&& \\ [-2.25ex] \boldsymbol{N(k,\mathrm{BB})} &2&2&2&6&18&38&66&118 \\ \hline   &&&&&&&& \\ [-2.25ex] \boldsymbol{N(k,\mathrm{BT})} &1&2&2&2&6&18&38&66 \\ \hline  &&&&&&&& \\ [-2.25ex] \boldsymbol{N(k,\mathrm{TB})} &0&0&2&6&10&14&26&62 \\ \hline    &&&&&&&& \\ [-2.25ex] \boldsymbol{N(k,\mathrm{TT})} &0&2&6&10&14&26&62&138 \\ \hline \hline &&&&&&&& \\ [-2.25ex] \textbf{Total}&\boldsymbol{3}&\boldsymbol{6}&\boldsymbol{12}&\boldsymbol{24}&\boldsymbol{48}&\boldsymbol{96}&\boldsymbol{192}&\boldsymbol{384} \end{array}\] Clearly, there are $3\cdot2^{k-1}$ ways to make exactly $k$ moves. To guarantee correctness, note that for each value of $k,$ the four counts in that column must total up to $3\cdot2^{k-1}.$

Finally, the requested probability is \[\frac{N(8,\mathrm{BT})+N(8,\mathrm{TT})}{N(8,\mathrm{BB})+N(8,\mathrm{BT})+N(8,\mathrm{TB})+N(8,\mathrm{TT})}=\frac{66+138}{118+66+62+138}=\frac{204}{384}=\frac{17}{32},\] from which the answer is $17+32=\boxed{049}.$

~Arcticturn (Fundamental Logic)

~MRENTHUSIASM (Reconstruction)

Solution 2 (Casework)

On each move, we can either stay on the level we previously were (stay on the bottom/top) or switch levels (go from top to bottom and vise versa). Since we start on the bottom, ending on the top means that we will have to switch an odd number of times; since we cannot switch twice in a row, over an eight-move period we can either make one or three switches. Furthermore, once we switch to a level we can choose one of two directions of traveling on that level: clockwise or counterclockwise (since we can't go back to our previous move, our first move on the level after switching determines our direction).

  1. Case 1: one switch. Our one switch can either happen at the start/end of our moves, or in the middle. There are $4 + 24 = 28$ ways to do this, outlined below.
    1. Subcase 1: switch happens at ends. If our first move is a switch, then there are two ways to determine the direction we travel along the top layer. Multiply by 2 to count for symmetry (last move is a switch) so this case yields $2^2 = 4$ possibilities.
    2. Subcase 2: switch happens in the middle. There are six places for the switch to happen; the switch breaks the sequences of moves into two chains, with each having 2 ways to choose their direction of travel. This case yields $6 \cdot 2^2 = 24$ possibilities.
  2. Case 2: three switches. Either two, one, or none of our switches occur at the start/end of our moves. There are $16 + 96 + 64 = 176$ ways to do this, outlined below. (Keep in mind we can't have two switches in a row.)
    1. Subcase 1: start and end with a switch. Since our third switch can't be in moves 2 or 7, there are four ways to place our switch, breaking our sequence into two chains. This case yields $4 \cdot 2^2 = 16$ possibilities.
    2. Subcase 2: one of our switches is at the start/end. WLOG our first move is a switch; moves 2 and 8 cannot be switches. We can choose 2 from any of the remaining 5 moves to be switches, but we have to subtract the 4 illegal cases where the two switches are in a row (3-4, 4-5, 5-6, 6-7). These three switches break our sequence into three chains; accounting for symmetry this case yields $2\left(\binom{5}{2} - 4\right) \cdot 2^3 = 96$ possibilities.
    3. Subcase 3: all our switches are in the middle. We choose 3 from any of the 6 middle moves to be our switches, but have to subtract the cases where at least two of them are in a row. If at least two switches are in a row, there are five places for the group of 2 and four places for the third switch; however this overcounts the case where all three are in a row, which has 4 possibilities. These three switches break our sequence into four chains, so this case yields $\left(\binom{6}{3} - 5 \cdot 4 + 4\right) \cdot 2^4 = 64$ possibilities.

Our probability is then $\frac{176 + 28}{3 \cdot 2^7} = \frac{17}{32} \iff \boxed{049}$.

Solution 3 (Faster Recursion)

Define $n_i$ to be the probability that after $i$ moves, the ant ends up on the level it started on (assuming the first move is a normal move where the ant can stay or move to the opposite level with half chance each). Note $n_0 = 1$ and $n_1 = \frac{1}{2}$.

Consider when the ant has $i$ moves left. It can either stay on its current level with $\frac{1}{2}$ chance and $i - 1$ moves left, or travel to the opposite level with $\frac{1}{2}$ chance and $i - 2$ moves left (it must spend another move as it cannot travel back immediately). We then have the recurrence \[n_i = \frac{1}{2}n_{i - 1} + \frac{1}{2}(1 - n_{i - 2})\]

On the first move, the ant can stay on the bottom level with $\frac{2}{3}$ chance and $7$ moves left. Or, it can move to the top level with $\frac{1}{3}$ chance and $6$ moves left (it has to spend one on the top as it can not return immediately). So the requested probability is $P = \frac{2}{3}(1 - n_7) + \frac{1}{3}n_6$.

Computing $n_i$ we get $n_6 = \frac{33}{64}$ and $n_7 = \frac{59}{128}$, resulting in $P = \frac{17}{32} \iff \boxed{049}$.

~IAmLegend (1e9end.github.io)

See also

2021 AIME II (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