Two Bugs on an Icosahedron

Two bugs start on adjacent vertices of an icosahedron. Every "move" they each randomly walk along one of the five edges available to them. What is the expected number of moves for them to meet (on either an edge or a vertex)?

Assume that if they meet on an edge, that counts as a full move, even though they have each only traversed half of the edge.

If the answer is a b \dfrac{a}{b} , where a a and b b are coprime positive integers, what is a + b a+b ?


The answer is 601.

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.

1 solution

Geoff Pilling
Nov 18, 2016

Define the following states:

  • 0: The bugs meet on a vertex
  • 1: The bugs are on adjacent vertices
  • 2: The bugs aren't on the same vertex, adjacent vertices, or opposite vertices
  • 3: The bugs are on opposite vertices
  • 4: The bugs meet on an edge

Note: Except for state 4, the number of the state represents the Hamming distance between the bugs.

And let,

E n = E_n = Expected number of moves to meet from state n n .

For each possible state where they don't meet ( n = 1 , 2 , 3 n=1,2,3 ) we can set up equations like this:

E n = 1 + m = 0 4 P ( n m ) E m E_n = 1 + \sum_{m=0}^{4} P(n \rightarrow m)E_m

And clearly, E 0 = E 4 = 0 E_0 = E_4 = 0

The 1 1 accounts for the move going from n n to m m . And the sum account for all the possible outcomes after the move.

This gives the following set of linear equations:

  • E 0 = 0 E_0 = 0
  • E 1 = 1 + 2 25 E 0 + 12 25 E 1 + 8 25 E 2 + 2 25 E 3 + 1 25 E 4 E_1 = 1 + \frac{2}{25}E_0 + \frac{12}{25}E_1 + \frac{8}{25}E_2 + \frac{2}{25}E_3 + \frac{1}{25}E_4
  • E 2 = 1 + 2 25 E 0 + 8 25 E 1 + 13 25 E 2 + 2 25 E 3 E_2 = 1 + \frac{2}{25}E_0 + \frac{8}{25}E_1 + \frac{13}{25}E_2 + \frac{2}{25}E_3
  • E 3 = 1 + 2 5 E 1 + 2 5 E 2 + 1 5 E 3 E_3 = 1 + \frac{2}{5}E_1 + \frac{2}{5}E_2 + \frac{1}{5}E_3
  • E 4 = 0 E_4 = 0

Solving, E 1 = 550 51 E_1 = \frac{550}{51}

550 + 51 = 601 550+51 = \boxed{601}

It is worth noting that, for states 1 , 2 , 3 1,2,3 , pairs of vertices are in state j j when j j is the Hamming distance between the vertices.

Mark Hennings - 4 years, 6 months ago

Log in to reply

Ah... Good point, @Mark Hennings !

Geoff Pilling - 4 years, 6 months ago

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...