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

m (Solution 1 (Recursion))
m (Solution 1 (Recursion))
Line 13: Line 13:
 
* Let <math>N(k,\text{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.
 
* Let <math>N(k,\text{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.
  
The base cases are <math>N(1,\text{BB})=2</math> and <math>N(1,\text{BT})=1.</math>  
+
The base case is <math>\left(N(1,\text{BB}),N(1,\text{BT}),N(1,\text{TB}),N(1,\text{TT})\right)=(2,1,0,0).</math>  
  
 
Suppose the ant made exactly <math>k</math> moves. We will perform casework on its last move:
 
Suppose the ant made exactly <math>k</math> moves. We will perform casework on its last move:
Line 63: Line 63:
 
N(1,\text{BB})&=2, \\  
 
N(1,\text{BB})&=2, \\  
 
N(1,\text{BT})&=1, \\
 
N(1,\text{BT})&=1, \\
 +
N(1,\text{TB})&=0, \\
 +
N(1,\text{TT})&=0, \\
 
N(k+1,\text{BB})&=N(k,\text{BB})+2\cdot N(k,\text{TB}), \\
 
N(k+1,\text{BB})&=N(k,\text{BB})+2\cdot N(k,\text{TB}), \\
 
N(k+1,\text{BT})&=N(k,\text{BB}), \\
 
N(k+1,\text{BT})&=N(k,\text{BB}), \\

Revision as of 23:48, 29 March 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,\text{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.
  • Let $N(k,\text{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.
  • Let $N(k,\text{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.
  • Let $N(k,\text{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 is $\left(N(1,\text{BB}),N(1,\text{BT}),N(1,\text{TB}),N(1,\text{TT})\right)=(2,1,0,0).$

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

  1. If the ant's 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 the ant's 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 the ant's 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 the ant's 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 shown in the illustration below, where each red arrow indicates $1$ way, and each blue arrow indicates $2$ ways: [asy] /* by MRENTHUSIASM */ size(7cm); pair A, B, C, D, E, F, G, H; A=(0,6); B=(0,4); C=(0,2); D=(0,0); E=(4,6); F=(4,4); G=(4,2); H=(4,0); label("$N(k, $BB" + "$)$", A, (-2,0)); label("$N(k, $BT" + "$)$", B, (-2,0)); label("$N(k, $TB" + "$)$", C, (-2,0)); label("$N(k, $TT" + "$)$", D, (-2,0)); label("$N(k+1, $BB" + "$)$", E, (2,0)); label("$N(k+1, $BT" + "$)$", F, (2,0)); label("$N(k+1, $TB" + "$)$", G, (2,0)); label("$N(k+1, $TT" + "$)$", H, (2,0)); draw(A--E,0.8+red,EndArrow); draw(A--F,0.8+red,EndArrow); draw(B--H,0.8+blue,EndArrow); draw(C--E,0.8+blue,EndArrow); draw(D--G,0.8+red,EndArrow); draw(D--H,0.8+red,EndArrow); dot(A^^B^^C^^D^^E^^F^^G^^H, 5+black); [/asy] Therefore, we have the following relationships: \begin{align*} N(1,\text{BB})&=2, \\  N(1,\text{BT})&=1, \\ N(1,\text{TB})&=0, \\ N(1,\text{TT})&=0, \\ N(k+1,\text{BB})&=N(k,\text{BB})+2\cdot N(k,\text{TB}), \\ N(k+1,\text{BT})&=N(k,\text{BB}), \\ N(k+1,\text{TB})&=N(k,\text{TT}), \\ N(k+1,\text{TT})&=N(k,\text{TT})+2\cdot N(k,\text{BT}). \end{align*} Using these equations, we recursively fill out the table below: \[\begin{array}{c||c|c|c|c|c|c|c|c}    &&&&&&&& \\ [-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,\textbf{BB})} &2&2&2&6&18&38&66&118 \\ \hline   &&&&&&&& \\ [-2.25ex] \boldsymbol{N(k,\textbf{BT})} &1&2&2&2&6&18&38&66 \\ \hline  &&&&&&&& \\ [-2.25ex] \boldsymbol{N(k,\textbf{TB})} &0&0&2&6&10&14&26&62 \\ \hline    &&&&&&&& \\ [-2.25ex] \boldsymbol{N(k,\textbf{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 $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,\text{BT})+N(8,\text{TT})}{N(8,\text{BB})+N(8,\text{BT})+N(8,\text{TB})+N(8,\text{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 (Remodeling)

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}$.

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