Solution to: Cube Crawlers

We shall refer to the vertices of the cube with the following letters:

Cube

We shall denote the average time (in years) that a cube crawler has left to live at a certain vertex with the same letter as the vertex itself.

If the cube crawler arrives in point B, it dies. The average time that the animal has left to live in point B is therefore 0 years:

B = 0

If the cube crawler is in point F, it can go in three directions: to points B, C, or G. If it walks to point B, it has 1 year left to live. If it walks to point C, it has 1 year plus the average time it has left to live in point C. If it walks to point G, it has 1 year plus the average time it has left to live in point G. Each of the three directions has an equal probability of being chosen, so the probability for each direction is 13. The average time that the cube crawler has left to live when it is at point F is therefore:

F = 13 × 1 + 13 × (1 + C) + 13 × (1 + G) = 13C + 13G + 1

In the same way, we can calculate the time left to live for all other vertices:

A = 13C + 13E + 13G + 1
C = 13A + 13D + 13F + 1
D = 13C + 13E + 1
E = 13A + 13D + 13H + 1
G = 13A + 13F + 13H + 1
H = 13E + 13G + 1

Now we start with:

A = 13C + 13E + 13G + 1

and substitute the formulas for C, E, and G:

A = 13 × (13A + 13D + 13F + 1) + 13 × (13A + 13D + 13H + 1) + 13 × (13A + 13F + 13H + 1) + 1

This can be rewritten as:

A = 13A + 29D + 29F + 29H + 2.

Now we substitute the formulas for D, F, and H, which results in:

A = 13A + 427C + 427E + 427G + 49 + 229.

Since A = 13C + 13E + 13G + 1, it also follows that 49A = 427C + 427E + 427G + 49. If we substitute this in, we get:

A = 13A + 49A + 229

From this, it follows that A = 10. Conclusion: Cube crawlers live for an average of 10 years.


Back to the puzzle