Slashdot Mirror


Chicago Developing 'Suspicious Behavior' Monitoring System

narramissic writes "Over the past few years, Chicago's Office of Emergency Management and Communications (OEMC) has been blanketing the city with a network of thousands of video cameras in an effort to remotely keep track of emergencies in real time. Now, with the help of IBM, the network is getting some smarts. IBM software will analyze the video and ultimately 'recognize suspicious behavior,' says OEMC spokesman Kevin Smith. 'The challenge is going to be teaching computers to recognize the suspicious behavior,' said Smith. 'Once this is done this will be a very impressive city in terms of public safety.'"

1 of 294 comments (clear)

  1. Mired in statistical fallacies by pclminion · · Score: 4, Informative

    Let's apply a little Bayesian reasoning, shall we?

    Given that system X identifies your behavior as suspicious, what is the probability that you are a terrorist? This probability is written P(T|S). This is what we want to find.

    Bayes' Rule: P(T|S) = P(S|T)*P(T)/P(S).

    P(S|T) is the probability that the system will identify you as suspicious, given that you are a terrorist. You can call this the system's "accuracy." Let's be generous and say the accuracy is 99.99% = 0.9999.

    P(T) is the probability that you are a terrorist. Let's say that this probability is one in a million: 0.000001.

    P(S) is the probability that the system thinks you are suspicious. There are two sources of suspicion: true positives, and false positives. The true positives are given by P(S|T)*P(T). The false positives are given by P(S|~T)*P(~T).

    Let's again, be generous, and say that the false positive rate P(S|~T) is only 0.1%, or 0.001.

    P(~T) is just 1-P(T) = 0.999999.

    So, let's substitute everything in:

    P(T|S) = P(S|T)*P(T) / (P(S|T)*P(T)+P(S|~T)*P(~T)) = 0.9999*0.000001 / (0.9999*0.000001+0.001*0.999999)

    What's that equal, everybody? 0.0009989 which is about 0.001, in other words 0.1%

    What does it mean? Even with a system that has a true positive rate of 99.99% and a false positive rate of only 0.1%, the probability of a "suspicious person" actually being a terrorist is only 0.1%.

    In other words, these systems are inherently useless in identifying terrorists. This is because terrorists are inherently RARE in the population. The massive accuracy of the test cannot make up for this fact.