Bayes nets represent dependence between random variables by directed arcs where the child depends on the parent. This information allows us to reduce the number of computations to determine the child's probability to (k-1)k^p. However, even with this number of computations, doing complete inference on a Bayes net is still computationally very expensive.
In order to make inference more tractable, a simplifying assumption is introduced. Specifically, the 'noisy-or' assumes that we can treat probability of some event as the probability that at least one of its parents (or a leak) caused it. This reduces the number of computations for a child with one parent from 2^10 to 11.
Here we extend the Pearl's original Holmes scenario to provide an alternative cause for the burglar alarm to sound. Again, based on Pearl's scenario (the appropriate Bayes net formulation for the initial state of the Holmes scenario can be found in Feb. 19th's class notes.), we add the following information:
Holmes, always the anxious type, listens to KNX, "News Radio", while at work, which will report the occurrence of a sufficiently large quake 97% of the time. Assume that KNX never makes a false positive report of a quake. Holmes thinks that a burglary and an earthquake can each set off his burglar alarm in independent ways that make a noisy-or a good model. From his original belief about the probabilistic connection between burglary and alarm, Holmes can compute a causal probability from burglary to alarm and a leak probability for an alarm occuring in the absence of a burglary. He estimates the probability of a quake causing an alarm as 70%. The incidence of quakes in Los Angeles is equal to the incidence of burglaries.
Draw the updated Bayes Net corresponding to above set of beliefs. Use the original Holmes net from class as your starting point.
Note: The probabilities and features are not identical to the example in the book.