Random "Dodecahedron" Walk

An ant starts on one vertex of a dodecahedron. 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 opposite to the original vertex he was on?

Clarification: Every second he chooses randomly between the three edges available to him, including the one he might have just walked along.


The answer is 35.

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.

2 solutions

Geoff Pilling
May 26, 2016

Relevant wiki: Linearity of Expectation

If we place the vertex at the origin, and the opposite vertex on the positive x-axis, then we can consider the following five groups of vertices (not including the initial vertex he's on) that share a common x-coordinate:

  • Group 1: 3 points, all points neighboring the initial vertex
  • Group 2: 6 points
  • Group 3: 6 points
  • Group 4: 3 points
  • Group 5: the opposite vertex

Now if we consider the expectation values E n E_n as the expected number of moves to get from any vertex in group n n to the vertex opposite the vertex he started on, then we get the following set of linear equations:

  • E = E 1 + 1 E=E_1 + 1
  • E 1 = 1 + ( 2 / 3 ) E 2 + ( 1 / 3 ) E E_1=1+(2/3)E_2+(1/3)E
  • E 2 = 1 + ( 1 / 3 ) E 1 + ( 1 / 3 ) E 2 + ( 1 / 3 ) E 3 E_2 =1 + (1/3)E_1 + (1/3)E_2 + (1/3)E_3
  • E 3 = 1 + ( 1 / 3 ) E 2 + ( 1 / 3 ) E 3 + ( 1 / 3 ) E 4 E_3=1+ (1/3)E_2+(1/3)E_3 + (1/3)E_4
  • E 4 = 1 + ( 2 / 3 ) E 3 E_4=1+(2/3)E_3

Solving for E E , you get E = 35 E=\boxed{35}

Otto Bretscher
May 27, 2016

Relevant wiki: Absorbing Markov Chains

I used the matrix method for Markov chains, equivalent to Geoff's solution: If

R = [ 0 1 / 3 0 0 0 1 0 1 / 3 0 0 0 2 / 3 1 / 3 1 / 3 0 0 0 1 / 3 1 / 3 2 / 3 0 0 0 1 / 3 0 ] R=\begin{bmatrix} 0&1/3&0&0&0\\1&0&1/3&0&0\\0&2/3&1/3&1/3&0\\0&0&1/3&1/3&2/3\\0&0&0&1/3&0\end{bmatrix}

is the transition matrix between the states Geoff describes, including the initial position as State 0, but not including the "absorbing state" at the opposite vertex, then the answer is the sum of the entries in the first column of ( I 5 R ) 1 = I 5 + R + R 2 + R 3 + . . . (I_5-R)^{-1}=I_5+R+R^2+R^3+... , which comes out to be 35 \boxed{35} .

Ah, very nice approach, Otto! :^)

Geoff Pilling - 5 years ago

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...