Difference between revisions of "2021 Fall AMC 12B Problems/Problem 17"
MRENTHUSIASM (talk | contribs) |
MRENTHUSIASM (talk | contribs) (→Solution 5 (Casework)) |
||
(13 intermediate revisions by 5 users not shown) | |||
Line 20: | Line 20: | ||
~fidgetboss_4000 | ~fidgetboss_4000 | ||
− | == Solution 2 (Recursion) == | + | ==Solution 2 (Recursion)== |
+ | |||
+ | Let <math>p(i)</math> be such probability after <math>i</math> moves. <math>p(1)=1</math>, <math>p(2)=\frac{1}{2}</math>. Then, <math>p(3)=\frac{1}{3}\cdot \frac{1}{2}+\frac{1}{6}\cdot 1=\frac{1}{3}</math>. Then, we can prove the recursive formula <cmath>p(x)=\frac{1}{3}p(x-1)+\frac{1}{6}p(x-2).</cmath> Now, we evaluate <math>p(5)=\boxed{\textbf{(A)}\ \frac{13}{108}}</math>. | ||
+ | |||
+ | == Solution 3 (Recursion) == | ||
We use <math>(n,t)</math> to denote the bug's current state. We wish to find <math>P(0,5)</math>. | We use <math>(n,t)</math> to denote the bug's current state. We wish to find <math>P(0,5)</math>. | ||
Line 43: | Line 47: | ||
~Steven Chen (www.professorchenedu.com) | ~Steven Chen (www.professorchenedu.com) | ||
− | ==Solution | + | ==Solution 4 (Generating Function)== |
Use a generating function, define <math>c_{n}\cdot x^{n}</math> be <math>c_{n}</math> ways for the destination be <math>n</math> units away from the origin. | Use a generating function, define <math>c_{n}\cdot x^{n}</math> be <math>c_{n}</math> ways for the destination be <math>n</math> units away from the origin. | ||
Line 55: | Line 59: | ||
Now let's start with <math>p(x)=1</math>. | Now let's start with <math>p(x)=1</math>. | ||
− | + | <math>1</math>st step: <math>p(x)=6x</math> | |
− | + | <math>2</math>nd step: <math>p(x)=6x\cdot(x^{-1}+2) = 6 + 12x </math> | |
− | + | <math>3</math>rd step: <math>p(x)=6\cdot6x + 12x\cdot(x^{-1}+2) = 12 + 60x</math> | |
− | + | <math>4</math>th step: <math>p(x)=12\cdot6x + 60x\cdot(x^{-1}+2) = 60 + 192x </math> | |
− | + | <math>5</math>th step: <math>p(x)=60\cdot6x + 192x\cdot(x^{-1}+2) = 192 + 744x </math> | |
So, there are <math>192+744=936</math> ways for the bug never moves more than <math>1</math> unit away from origin. The answer is <math>\frac{936}{6^5} = \boxed{\textbf{(A)}\ \frac{13}{108}}</math>. | So, there are <math>192+744=936</math> ways for the bug never moves more than <math>1</math> unit away from origin. The answer is <math>\frac{936}{6^5} = \boxed{\textbf{(A)}\ \frac{13}{108}}</math>. | ||
Line 69: | Line 73: | ||
~wwei.yu | ~wwei.yu | ||
− | ==Solution | + | ==Solution 5 (Casework)== |
In the following diagram, let <math>A</math> denote the vertex where the bug starts (shown in red) and <math>B</math> denote one of the <math>6</math> adjacent vertices (shown in green). | In the following diagram, let <math>A</math> denote the vertex where the bug starts (shown in red) and <math>B</math> denote one of the <math>6</math> adjacent vertices (shown in green). | ||
− | + | <asy> | |
− | < | + | /* Made by MRENTHUSIASM */ |
− | + | size(150); | |
+ | pair[] A, B, C; | ||
+ | for (int i = 0; i <= 5; ++i) { | ||
+ | A[i] = dir(60*i); | ||
+ | B[i] = 2 * dir(60*i); | ||
+ | C[i] = sqrt(3) * dir(30+60i); | ||
+ | } | ||
+ | draw(B[2]--B[3]^^C[1]--C[3]^^B[1]--B[4]^^C[0]--C[4]^^B[0]--B[5]^^B[3]--B[4]^^C[2]--C[4]^^B[2]--B[5]^^C[1]--C[5]^^B[1]--B[0]^^B[2]--B[1]^^C[2]--C[0]^^B[3]--B[0]^^C[3]--C[5]^^B[4]--B[5]); | ||
+ | dot(origin,red+linewidth(5)); | ||
+ | for (int i = 0; i <= 5; ++i) { | ||
+ | dot(A[i],green+linewidth(5)); | ||
+ | dot(B[i],linewidth(5)); | ||
+ | dot(C[i],linewidth(5)); | ||
+ | } | ||
+ | </asy> | ||
Note that: | Note that: | ||
Line 94: | Line 112: | ||
The probability for this case is <math>1\cdot\frac16\cdot1\cdot\frac13\cdot\frac13=\frac{1}{54}.</math></li><p> | The probability for this case is <math>1\cdot\frac16\cdot1\cdot\frac13\cdot\frac13=\frac{1}{54}.</math></li><p> | ||
<li><math>A \rightarrow B \rightarrow B \rightarrow A \rightarrow B \rightarrow B</math> <p> | <li><math>A \rightarrow B \rightarrow B \rightarrow A \rightarrow B \rightarrow B</math> <p> | ||
− | The probability for this case is <math>1\cdot\frac13\cdot\frac16\cdot1\cdot\frac13=\frac{1}{54}.</math> | + | The probability for this case is <math>1\cdot\frac13\cdot\frac16\cdot1\cdot\frac13=\frac{1}{54}.</math></li><p> |
+ | <li><math>A \rightarrow B \rightarrow B \rightarrow B \rightarrow A \rightarrow B</math> <p> | ||
+ | The probability for this case is <math>1\cdot\frac13\cdot\frac13\cdot\frac16\cdot1=\frac{1}{54}.</math></li><p> | ||
+ | <li><math>A \rightarrow B \rightarrow B \rightarrow B \rightarrow B \rightarrow A</math> <p> | ||
+ | The probability for this case is <math>1\cdot\frac13\cdot\frac13\cdot\frac13\cdot\frac16=\frac{1}{162}.</math></li><p> | ||
+ | <li><math>A \rightarrow B \rightarrow B \rightarrow B \rightarrow B \rightarrow B</math> <p> | ||
+ | The probability for this case is <math>1\cdot\frac13\cdot\frac13\cdot\frac13\cdot\frac13=\frac{1}{81}.</math></li><p> | ||
</ol> | </ol> | ||
+ | Together, the answer is <cmath>\frac{1}{36}+\frac{1}{108}+\frac{1}{108}+\frac{1}{54}+\frac{1}{54}+\frac{1}{54}+\frac{1}{162}+\frac{1}{81}=\boxed{\textbf{(A)}\ \frac{13}{108}}.</cmath> | ||
+ | ~MRENTHUSIASM | ||
+ | |||
+ | ==Solution 6 (Markov Chain)== | ||
+ | We can use a Markov chain to represent the different states of the bug. | ||
+ | [[File:MarkovChain-AMC12B-2021F-17.png|200px|thumb|left|]] | ||
+ | Let "center" (C) represent the starting point, "1 away" (O) represent a point on the grid 1 move and 1 unit away from the starting point, and "2+ away" (T) represent the case where the bug has ventured more than 1 unit away from its starting point. | ||
+ | |||
+ | Notice that the bug must move to the 1 away state from the center. From there, it moves back to the center with a <math>\frac{1}{6}</math> probability, to a point 2 units away from the center with <math>\frac{1}{2}</math> probability, and to another point 1 unit away with <math>\frac{1}{3}</math> probability. | ||
+ | |||
+ | We are trying to find the probability that the bug does not reach the 2+ away state in 5 moves. To accomplish this, we can find the complement by listing out the cases that the bug does reach the 2+ away state in a specified number of moves. | ||
+ | |||
+ | Clearly, the bug cannot reach the 2+ away (T) state in 0 moves. | ||
+ | |||
+ | In 1 move, the bug can only reach the 1 away (O) state, so it cannot reach the T state in 1 move either. | ||
+ | |||
+ | In 2 moves, the bug can move to the O state followed by the T state with probability <math>1*\frac{1}{2} = \frac{1}{2}</math>. | ||
+ | |||
+ | In 3 moves, the bug can follow the pattern OOT with probability <math>1*\frac{1}{3}*\frac{1}{2} = \frac{1}{6}</math>. | ||
+ | |||
+ | In 4 moves, the bug can follow the paths of OOOT or OCOT, with probabilities <math>\frac{1}{18}</math> and <math>\frac{1}{12}</math> respectively. | ||
+ | |||
+ | In 5 moves, the bug can follow the paths of OOOOT, OCOOT, or OOCOT, with probabilities <math>\frac{1}{54}</math>, <math>\frac{1}{36}</math>, and <math>\frac{1}{36}</math>. | ||
+ | |||
+ | Adding up these probabilities, we obtain <math>\frac{95}{108}</math>. Finding the complement of this, we subtract from 1 to get the answer of <math>\boxed{\textbf{(A)}\ \frac{13}{108}}</math>. | ||
+ | <math>\newline</math> | ||
+ | ~diyarv | ||
==See Also== | ==See Also== | ||
{{AMC12 box|year=2021 Fall|ab=B|num-a=18|num-b=16}} | {{AMC12 box|year=2021 Fall|ab=B|num-a=18|num-b=16}} | ||
+ | |||
+ | [[Category:Intermediate Combinatorics Problems]] | ||
{{MAA Notice}} | {{MAA Notice}} |
Latest revision as of 21:44, 2 November 2024
Contents
Problem
A bug starts at a vertex of a grid made of equilateral triangles of side length . At each step the bug moves in one of the possible directions along the grid lines randomly and independently with equal probability. What is the probability that after moves the bug never will have been more than unit away from the starting position?
Solution 1 (Recursion)
Let be the number of paths of moves such that the bug never will have been more than unit away from the starting position. Clearly, by symmetry, there are two possible states here, the bug being on the center and the bug being on one of the vertices of the unit hexagon around the center. Let be the number of paths with the aforementioned restriction that end on the center. Let be the number of paths with the aforementioned restriction that end on a vertex of the surrounding unit hexagon. We have since from the center, there are possible points to land to and from a vertex there are possible points to land to (the two adjacent vertices and the center). We also have , since to get to the center the bug must have come from a vertex, and since from a vertex there are two vertices to move to, and from the center there are vertices to move to. We can construct a recursion table using the base cases and and our recursive rules for and as follows: Then, and the desired probability is thus
~fidgetboss_4000
Solution 2 (Recursion)
Let be such probability after moves. , . Then, . Then, we can prove the recursive formula Now, we evaluate .
Solution 3 (Recursion)
We use to denote the bug's current state. We wish to find .
The first argument denotes the bug's current position. We use to denote the bug's starting point. We use to denote any point whose distance to the bug's starting point is .
The second argument denotes the remaining number of moves the bug has.
For and , we have For and , we have For and , we have We solve this recursive equation by using backward induction: Therefore, the answer is .
~Steven Chen (www.professorchenedu.com)
Solution 4 (Generating Function)
Use a generating function, define be ways for the destination be units away from the origin.
We conclude that:
- If the current point is origin, then we need to multiply by .
- If the current point on vertex of the unit hexagon, then we need to multiply by , where there is way to return to the origin and there are two ways to keep distance .
Now let's start with .
st step:
nd step:
rd step:
th step:
th step:
So, there are ways for the bug never moves more than unit away from origin. The answer is .
~wwei.yu
Solution 5 (Casework)
In the following diagram, let denote the vertex where the bug starts (shown in red) and denote one of the adjacent vertices (shown in green). Note that:
- If the bug is at then the probability that it moves to next is
- If the bug is at then the probability that it moves to next is
- If the bug is at then the probability that it moves to next is
We apply casework to the possible paths of the bug:
-
The probability for this case is
-
The probability for this case is
-
The probability for this case is
-
The probability for this case is
-
The probability for this case is
-
The probability for this case is
-
The probability for this case is
-
The probability for this case is
Together, the answer is ~MRENTHUSIASM
Solution 6 (Markov Chain)
We can use a Markov chain to represent the different states of the bug.
Let "center" (C) represent the starting point, "1 away" (O) represent a point on the grid 1 move and 1 unit away from the starting point, and "2+ away" (T) represent the case where the bug has ventured more than 1 unit away from its starting point.
Notice that the bug must move to the 1 away state from the center. From there, it moves back to the center with a probability, to a point 2 units away from the center with probability, and to another point 1 unit away with probability.
We are trying to find the probability that the bug does not reach the 2+ away state in 5 moves. To accomplish this, we can find the complement by listing out the cases that the bug does reach the 2+ away state in a specified number of moves.
Clearly, the bug cannot reach the 2+ away (T) state in 0 moves.
In 1 move, the bug can only reach the 1 away (O) state, so it cannot reach the T state in 1 move either.
In 2 moves, the bug can move to the O state followed by the T state with probability .
In 3 moves, the bug can follow the pattern OOT with probability .
In 4 moves, the bug can follow the paths of OOOT or OCOT, with probabilities and respectively.
In 5 moves, the bug can follow the paths of OOOOT, OCOOT, or OOCOT, with probabilities , , and .
Adding up these probabilities, we obtain . Finding the complement of this, we subtract from 1 to get the answer of . ~diyarv
See Also
2021 Fall AMC 12B (Problems • Answer Key • Resources) | |
Preceded by Problem 16 |
Followed by Problem 18 |
1 • 2 • 3 • 4 • 5 • 6 • 7 • 8 • 9 • 10 • 11 • 12 • 13 • 14 • 15 • 16 • 17 • 18 • 19 • 20 • 21 • 22 • 23 • 24 • 25 | |
All AMC 12 Problems and Solutions |
The problems on this page are copyrighted by the Mathematical Association of America's American Mathematics Competitions.