Home / Week 9 Exercises / Cat and Mouse

Cat and Mouse

The questions below are due on Tuesday April 16, 2019; 11:00:00 PM.
 
You are not logged in.

If you are a current student, please Log In for full access to this page.
Music For This Problem
 

  Jon the cat is chasing Terry the mouse through the house when Terry hides beneath a long rug, so that Jon cannot see where he is hiding.

Jon the cat decides to use Bayesian state estimation to determine the mouse's location. He starts by assuming that the mouse is equally likely to be in any of 9 discrete locations under the rug. Let L_t be a random variable representing the mouse's location at time t:

\Pr(L_0 = x) = \begin{cases} 1/9, & 0 \leq x \leq 8 \\ 0, & \text{otherwise} \end{cases}

Jon has also, after years of mouse-chasing, built up a model for how mice move when they are trapped under rugs. According to his model, if a mouse is at location x at time n, then at time n+1, it will be at location x+1 with probability 0.5, and location x-1 with probability 0.5. If an action would take the mouse outside of the possible locations, that probability mass should be associated with the mouse staying in the same location:

\Pr(L_{t+1} = x'~|~L_t = x) = \begin{cases} 1/2, & x' = \mathtt{max(0, }~x-1\mathtt{ )} \\ 1/2, & x' = \mathtt{min(8, }~x+1\mathtt{ )} \\ 0, & \text{otherwise} \end{cases}

Finally, although Jon cannot see where Terry is under the rug, cats generally have very acute senses of hearing, and so he decides to use his ears to locate the mouse. However, Jon is getting old, and so his hearing has deteriorated somewhat. He cannot discern the direction from which a sound is coming (only distance), and even that, he cannot pinpoint perfectly.

So Jon's observations will be in the form of hearing something n spaces away from his current location. If D_t is a random variable representing the mouse's actual distance away at time t, and O_t is a random variable representing the observed distance at time t, then Jon builds up the following model of his hearing:

\Pr(O_t = o~|~D_t = d) = \begin{cases} 1/10, & o = d-1 \\ 7/10, & o = d \\ 2/10, & o = d+1 \\ 0, & \text{otherwise} \end{cases}

Answer the questions below. For each, enter your answer as a Python list whose i^{\text{th}} element represents the probability that the mouse is in location i, and enter all probabilities accurate to 6 decimal places. Note that you may enter Python expressions in the boxes below (so you do not need to simplify your answers completely).

 

Jon starts out by positioning himself at location 4 at time 0:


Jon hears a sound 3 locations away from his current position. Before the mouse moves, what is Jon's updated belief over the mouse's location?

After Jon makes this observation, the mouse moves. After the mouse moves, what is Jon's updated belief over the mouse's location?

 

After all of the above has happened, Jon moves himself to location 3:


Now, Jon hears a sound 2 locations away from his current position. Before the mouse moves, what is Jon's updated belief over the mouse's location?

After Jon makes this observation, the mouse moves once again. After the mouse moves, what is Jon's updated belief over the mouse's location?

On what location should Jon pounce if he wants to have the greatest probability of catching the mouse?