Difference between revisions of "2021 AIME II Problems/Problem 8"
MRENTHUSIASM (talk | contribs) m (→Solution 1 (Recursion)) |
MRENTHUSIASM (talk | contribs) (→Solution 2 (Casework)) |
||
Line 98: | Line 98: | ||
~MRENTHUSIASM (Reconstruction) | ~MRENTHUSIASM (Reconstruction) | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
==Solution 3 (Faster Recursion)== | ==Solution 3 (Faster Recursion)== |
Revision as of 18:23, 28 January 2022
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 moves that ant is at a vertex of the top face on the cube is , where and are relatively prime positive integers. Find
Solution 1 (Recursion)
For all positive integers let
- be the number of ways to make a sequence of exactly moves, where the last move is from the bottom face to the bottom face.
- be the number of ways to make a sequence of exactly moves, where the last move is from the bottom face to the top face.
- be the number of ways to make a sequence of exactly moves, where the last move is from the top face to the bottom face.
- be the number of ways to make a sequence of exactly moves, where the last move is from the top face to the top face.
The base case occurs at from which
Suppose the ant makes exactly moves for some We perform casework on its last move:
- If its last move is from the bottom face to the bottom face, then its next move has
- way to move from the bottom face to the bottom face.
- way to move from the bottom face to the top face.
- If its last move is from the bottom face to the top face, then its next move has ways to move from the top face to the top face.
- If its last move is from the top face to the bottom face, then its next move has ways to move from the bottom face to the bottom face.
- If its last move is from the top face to the top face, then its next move has
- way to move from the top face to the bottom face.
- way to move from the top face to the top face.
Alternatively, this recursion argument is illustrated below, where each dashed arrow indicates way, and each solid arrow indicates ways: Therefore, we have the following relationships: Using these equations, we recursively fill out the table below: By the Multiplication Principle, there are ways to make exactly moves. So, we must get for all values of
Finally, the requested probability is from which the answer is
~Arcticturn (Fundamental Logic)
~MRENTHUSIASM (Reconstruction)
Solution 3 (Faster Recursion)
Define to be the probability that after 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 and .
Consider when the ant has moves left. It can either stay on its current level with chance and moves left, or travel to the opposite level with chance and moves left (it must spend another move as it cannot travel back immediately). We then have the recurrence
On the first move, the ant can stay on the bottom level with chance and moves left. Or, it can move to the top level with chance and moves left (it has to spend one on the top as it can not return immediately). So the requested probability is .
Computing we get and , resulting in .
~IAmLegend (1e9end.github.io)
See Also
2021 AIME II (Problems • Answer Key • Resources) | ||
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.