In: Statistics and Probability
My suggestion is to run at least 1000 trials of the ten-minute journey of the robber.
ANSWER:
Simulation model is as follows
Formula: C11 =RAND()
D11 =LOOKUP($C11,$D$3:$D$7,$A$3:$A$7)
E20 =COUNTIF(D11:D20,"<>"&"Fall asleep")
F20 =ABS(COUNTIF(D11:D20,"Walk North")-COUNTIF(D11:D20,"Walk South"))+ABS(COUNTIF(D11:D20,"Walk East")-COUNTIF(D11:D20,"Walk West"))
Select range A11:F20. Copy and paste this upto row 10010
This will compete the 1000 trials.
I12 =COUNTIF(F11:F10010,"<=2")/1000
I13 =AVERAGE(E11:E10010)
I14 =AVERAGE(F11:F10010)
Probability that he is two blocks or less from the store = 0.433
On average how many blocks he has walked = 7 blocks
On average how far away is he from the store = 3 blocks away
Note that above simulation results will vary with every simulation run. So these will not match from simulation to simulation.