Numb3rs 501: High Exposure

In this episode, two climbers are found dead in a national park, one with a large high-value uncut diamond hidden in his pack. A report comes in that a diamond shipment has gone missing en route, and the team discovers that it was supposed to be delivered by a charter plane which left one airport, but never arrived at its destination. Without transponder or radar information to help determine the flight path, the possible crash area is too big to cover in the amount of time they have. The question is to determine a probabilistic flight path, that is, to narrow the search by finding the probability that the plane took that route, given a set of conditions. These constraints could include the topography of the land, weather conditions, and whether the pilot wanted to minimize distance or take the scenic route.


Let’s take our map and overlay a grid, and just consider paths along the edges of the grid as a model. For each vertex, labeled by a letter and a number, we assign a probability to each edge leaving the vertex.





To get the probability of a given path, we take the product of the probabilities of each step.

EXAMPLE

Consider the path C3 C2 C1 B1 A1. Then, the probability that the plane took the path is,

pC3C2C1B1A1 = pC3C2 * pC2C1* pC1B1* pB1A1

= (50%)(50%)(100%)(100%)

= 25%

So there is a 25% probability that the plane took this path.



C3 C2 B2 B1 A1

C3 C2 B2 A2 A1

C3 B3 B2 B1 A1

C3 B3 B2 A2 A1

C3 B3 A3 A2 A1



Let us generalize this to say that the probability of the plane passing through a given point is the sum of the probabilities of all the paths leading to that point.



In the show, the team actually has even more information. Before going missing, the climbers had talked about a great new cliff they had found. The team has a topographical map from the U.S. Geological Survey, and together with the climbers’ location and reasonable hiking distance, they can narrow down where this new cliff might be. If they can narrow down the path that the plane took, then they have a better chance of finding it, along with hopefully more evidence that will lead them to the killers.


Now let us incorporate more information into our model. Let’s say that at the time the plane left the airport, there was a thunderstorm at C1, so moving in the direction of that vertex is less desirable. Maybe we also read off the USGS map that the land around A3 is mostly flat and probably doesn’t have any great climbing cliffs. While this wouldn’t necessarily have been a factor in the pilot’s choice, we know that he went down near a great climbing cliff and therefore his path would be less probable in that region. Note that the choices are no longer symmetric!



We can see that the more information about the situation we have, the better our model is and the better our guesses. This is important when we have finite resources, like only a few field agents able to cover the terrain, not enough helicopters, and limited search time. We also have to balance the number of grid lines with the information we have—if we have more grid lines, we can better localize our probabilities, but it might be harder to determine what those probabilities might be.