返回题库

AIME 2019 I · 第 5 题

AIME 2019 I — Problem 5

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

A moving particle starts at the point (4,4)(4,4) and moves until it hits one of the coordinate axes for the first time. When the particle is at the point (a,b)(a,b), it moves at random to one of the points (a1,b)(a-1,b), (a,b1)(a,b-1), or (a1,b1)(a-1,b-1), each with probability 13\frac{1}{3}, independently of its previous moves. The probability that it will hit the coordinate axes at (0,0)(0,0) is m3n\frac{m}{3^n}, where mm and nn are positive integers such that mm is not divisible by 33. Find m+nm + n.

解析

Solution 1

One could recursively compute the probabilities of reaching (0,0)(0,0) as the first axes point from any point (x,y)(x,y) as

P(x,y)=13P(x1,y)+13P(x,y1)+13P(x1,y1)P(x,y) = \frac{1}{3} P(x-1,y) + \frac{1}{3} P(x,y-1) + \frac{1}{3} P(x-1,y-1) for x,y1,x,y \geq 1, and the base cases are P(0,0)=1,P(x,0)=P(y,0)=0P(0,0) = 1, P(x,0) = P(y,0) = 0 for any x,yx,y not equal to zero. We then recursively find P(4,4)=2452187P(4,4) = \frac{245}{2187} so the answer is 245+7=252245 + 7 = \boxed{252}.

If this algebra seems intimidating, you can watch a nice pictorial explanation of this by On The Spot Stem. https://www.youtube.com/watch?v=XBRuy3_TM9w

Solution 2

Obviously, the only way to reach (0,0) is to get to (1,1) and then have a 13\frac{1}{3} chance to get to (0,0). Let x denote a move left 1 unit, y denote a move down 1 unit, and z denote a move left and down one unit each. The possible cases for these moves are (x,y,z)=(0,0,3),(1,1,2),(2,2,1)(x,y,z)=(0,0,3),(1,1,2),(2,2,1) and (3,3,0)(3,3,0). This gives a probability of 1127+4!2!181+5!2!2!1243+6!3!3!1729=2457291 \cdot \frac{1}{27} + \frac{4!}{2!} \cdot \frac{1}{81} + \frac{5!}{2! \cdot 2!} \cdot \frac{1}{243} +\frac{6!}{3! \cdot 3!} \cdot \frac{1}{729}=\frac{245}{729} to get to (1,1)(1,1). The probability of reaching (0,0)(0,0) is 24537\frac{245}{3^7}. This gives 245+7=252245+7=\boxed{252}.

Solution 3

Since the particle stops at one of the axes, we know that the particle must pass through (1,1)(1,1). Thus, it suffices to consider the probability our particle will reach (1,1)(1,1). Then the only ways to get to (1,1)(1,1) from (4,4)(4,4) are the following:

(1) 3 moves diagonally

(2) 2 moves diagonally, 1 move left, 1 move down

(3) 1 move diagonally, 2 moves left and 2 moves down.

(4) 3 moves left, 3 moves down.

The probability of (1) is 133\frac{1}{3^3}. The probability of (2) is 4!2!34=1234\frac{\frac{4!}{2!}}{3^4} = \frac{12}{3^4}. The probability of (3) is 5!2!2!35=3035\frac{\frac{5!}{2!2!}}{3^5} = \frac{30}{3^5}. The probability of (4) is 6!3!3!36=2036\frac{\frac{6!}{3!3!}}{3^6} = \frac{20}{3^6}. Adding all of these together, we obtain a total probability of 24536\frac{245}{3^6} that our particle will hit (1,1)(1,1). Trivially, there is a 13\frac{1}{3} chance our particle will hit (0,0)(0,0) from (1,1)(1,1). So our final probability will be 2453613=24537    m=245,n=7    252\frac{245}{3^6} \cdot \frac{1}{3} = \frac{245}{3^7} \implies m = 245, n = 7 \implies \boxed{252}

~NotSoTrivial

Solution 4 (Official MAA)

All paths that first hit the axes at the origin must pass through the point (1,1)(1,1). There are 6363 paths from the point (4,4)(4,4) to the point (1,1)(1,1): (63)=20\tbinom{6}{3}=20 that take 33 steps left and 33 steps down, (5221)=30\tbinom{5}{2\,2\,1}=30 that take 22 steps left, 22 steps down, and 11 diagonal step, (4112)=12\tbinom{4}{1\,1\,2}=12 steps that take 11 step left, 11 steps down, and 22 diagonal steps, and 11 that takes 33 diagonal steps. The total probability of moving from (4,4)(4,4) to (1,1)(1,1) is therefore

13620+13530+13412+1331=24536.\frac{1}{3^6}\cdot20+\frac{1}{3^5}\cdot30+\frac{1}{3^4}\cdot12+\frac{1}{3^3}\cdot1=\frac{245}{3^6}. Multiplying by 13\tfrac13 gives 24537,\tfrac{245}{3^7}, the probability that the path first reaches the axes at the origin. The requested sum is 245+7=252245+7=252.

Video Solution #1(A nice visual explanation)

https://youtu.be/JQdad7APQG8?t=1340

Video Solution

Unique solution: https://youtu.be/I-8xZGhoDUY

~Shreyas S