Let A , B , C and D be the vertices of a regular tetrahedron, each of whose edges measures 1 meter. A bug, starting from vertex A , observes the following rule:
At each vertex it chooses one of the three edges meeting at that vertex, each edge being equally likely, and crawls along that edge to the vertex at its opposite end.
Suddenly the bug remembers that it has left its antenna at A .
Find the probability that the bug is at vertex A when it has crawled exactly 7 meters.
If the probability is the form of q p , where p and q are coprime positive integers, find p + q .
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
I see. :) Yea, this is a popular problem indeed.
I think in the context of this problem, you want to change "minutes" to "meters" - just 3 spots.
Log in to reply
Thanks! That's what happens when you cut and paste old solutions ;)
For n = 0,1,2,..., let a n be the probability that the bug is at vertex A after crawling exactly n meters. Then we have the recursive relation a n + 1 = 3 1 ( 1 − a n ) , _ _ (1)
because the bug can be at vertex A after crawling n + 1 meters if and only if
(a) it was not at A following a crawl of n meters (this has probability 1 − a n ) and
(b) from one of the other vertices it heads toward A (this has probability 3 1 .
Now, since a 0 = 1 (i.e., the bug starts at vertex A), from the recursive relation (1), we have a 1 = 0 , a 2 = 3 1 , .... , and the desired probability is p = a 7 = 7 2 9 1 8 2
Now p=182, q=729 yields p+q=911.
911 is also the 'Emergency' number of many countries including India and the U.S.A. (Hence the title.)
Great solution! Just 1 typo that a 2 = 3 1 not 3 2
I live in India but I do not know that number.
Did you know this problem appeared in INMO 2015? Problem 5
Log in to reply
when your phone is locked... type 911..... or 112..... these are the only two numbers which when typed on the keypad while the phone is locked... actually appear on the screen.... this is because these are the two emergency numbers available in India.... (this used to happen in the older phones where there were keypads... i dont know about the touch phones....)
Funny that you should mention that.... I sat for INMO 2015 after qualifying RMO 2014, and I gave the solution to the combinatorics problem, almost same in idea as this one, and I did not use recursion.... because I had wasted 1.5 hours trying to bash the first geometry problem, and I had done only 2 problems fully after 3hours 50 minutes.
When only 10 minutes were left, I looked at the combinatorics problem (I was not much a fan of combinatorics back then, so I left it for the last try) in utter desperation, because I wanted to get a decent score, and guess what!!
I wrote down whatever came to my mind in the next 5 minutes and left it there.
Essentially what I had used was the Principle of Inclusion and Exclusion (PIE) , and I fancy it was the only solution using PIE, because at first my scorecard showed 28, the credit for 2 problems , and after sending it for rechecking, it rose by 14 marks, only 3 marks short of a full credit. And I can only guess that they had overlooked the solution, because there was a calculation mistake where I was off by 10 , and later they found the solution to be correct. In fact, I only realized 3 days later that I had actually given a beautiful solution (shameless self-appraisal :P) by m i s t a k e .
Log in to reply
What happens when I dial 911 from India?
Cool story, did you qualify to the training camp?
Log in to reply
@Agnishom Chattopadhyay – You connect to the emergency center, I think.
Nope, I got 42, the merit list cutoff was 43. And the cutoff for camp was 52. :'(
Log in to reply
@Soumava Pal – You still have a reason to celebrate.
42 is the answer to life, the universe and everything.
Problem Loading...
Note Loading...
Set Loading...
Let us analyze this two-state Markov chain. Our main goal is to find a closed formula for the probability that the bug is at vertex A after having crawled n meters.
Let p n = 4 1 + d n be the probability that the bug finds itself at vertex A after having traveled n meters, where 4 1 is the equilibrium state and d n is the deviation from the equilibrium. The probability that the bug isn't at A after having traveled n meters is q n = 4 3 − d n so that p n + 1 = 3 q n = 4 1 − 3 d n . (The probability is 1/3 that the bug travels from a point other than A to A .) Note that d n + 1 = − 3 d n . Starting from p 1 = 0 = 4 1 − 4 1 , we find that d n = 4 ∗ 3 n − 1 ( − 1 ) n and p n = 4 1 + d n = 4 1 ( 1 + 3 n − 1 ( − 1 ) n ) In particular, we have p 7 = 7 2 9 1 8 2 .
For full disclosure: I copied this solution from here , where the same problem was posed.