A bug starts on one vertex of a dodecahedron. Call it A. Define a second vertex adjacent to the one he starts on, and call it B.
Every second he randomly walks along one edge to another vertex. What is the expected value of the number of seconds it will take for him to reach the vertex B?
Clarification
: Every second he chooses randomly among the three edges available to him, including the one he might have just walked along. On his first move, he has a
3
1
probability of reaching B.
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.
Why isn't that E 4 = 1 + ( 3 / 3 ) E 3 ? I think that when the bug is aiming at the last group of point, it only has choices to get from all points neighbouring the vertex to the vertex opposing B.
Log in to reply
Well, when he is in group 4, (right next to the destination vertex) he has a 2/3 chance of returning to a vertex in group 3, and a 1/3 chance of moving to the final vertex, #5.
So, E 4 = 1 + ( 2 / 3 ) E 3 + ( 1 / 3 ) E 5 , but since E 5 = 0 , this becomes E 4 = 1 + ( 2 / 3 ) E 3 .
Greg Markowsky, Simple random walk on distance-regular graphs states the hitting time is the product of the effective resistance between the nodes in question times the number of edges in the graph. A dodecahedron is a distance-regular graph. The effective resistance is also known as the resistance distance using 1 Ω resistors. On a dodecahedron the effective resistance to an adjacent vertex is 3 0 1 9 . A dodecahedron has 30 edges. Therefore, the answer is 19.
can you explain why the effective resistance to an adjacent vertex is 19/30
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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 |
|
Problem Loading...
Note Loading...
Set Loading...
If we place the vertex opposite B at the origin, and the vertex B on the positive x-axis, then we can consider the following five groups of vertices that share a common x-coordinate:
Now if we consider the expectation values E n as the expected number of moves to get from any vertex in group n to the vertex B, then we get the following set of linear equations:
A is in group 4, so solving for E 4 , you get E 4 = 1 9