9.11 Exercises

Exercise 9.1.

Using only the axioms of probability and the definition of conditional independence, prove Proposition 9.2.

Exercise 9.2.
Refer to caption
Figure 9.37: A simple diagnostic belief network

Consider the belief network of Figure 9.37. This is the “Simple diagnostic example” in AIPython (aipython.org). For each of the following, first predict the answer based on your intuition, then run the belief network to check it. Explain the result you found by carrying out the inference.

  • (a)

    The posterior probabilities of which variables change when Smokes is observed to be true? That is, for which X is P(XSmoke=true)P(X).

  • (b)

    Starting from the original network, the posterior probabilities of which variables change when Fever is observed to be true? That is, specify the X where P(XFever=true)P(X).

  • (c)

    Does the probability of Fever change when Wheezing is observed to be true?
    That is, is P(FeverWheezing=true)P(Fever)? Explain why (in terms of the domain, in language that could be understood by someone who did not know about belief networks).

  • (d)

    Suppose Wheezing is observed to be true. Does the observing Fever change the probability of Smokes? That is, is P(SmokesWheezing)P(SmokesWheezing,Fever)? Explain why (in terms that could be understood by someone who did not know about belief networks).

  • (e)

    What could be observed so that subsequently observing Wheezing does not change the probability of SoreThroat. That is, specify a variable or variables X such that P(SoreThroatX)=P(SoreThroatX,Wheezing), or state that there are none. Explain why.

  • (f)

    Suppose Allergies could be another explanation of SoreThroat. Change the network so that Allergies also affects SoreThroat but is independent of the other variables in the network. Give reasonable probabilities.

  • (g)

    What could be observed so that observing Wheezing changes the probability of Allergies? Explain why.

  • (h)

    What could be observed so that observing Smokes changes the probability of Allergies? Explain why.

Note that parts (a), (b), and (c) only involve observing a single variable.

Exercise 9.3.

Consider the belief network of Figure 9.38, which extends the electrical domain to include an overhead projector.

Refer to caption
Figure 9.38: Belief network for an overhead projector

Answer the following questions about how knowledge of the values of some variables would affect the probability of another variable.

  • (a)

    Can knowledge of the value of Projector_plugged_in affect the belief in the value of Sam_reading_book? Explain.

  • (b)

    Can knowledge of Screen_lit_up affect the belief in Sam_reading_book? Explain.

  • (c)

    Can knowledge of Projector_plugged_in affect your belief in Sam_reading_book given that you have observed a value for Screen_lit_up? Explain.

  • (d)

    Which variables could have their probabilities changed if just Lamp_works was observed?

  • (e)

    If just Power_in_projector was observed, which variables could have their probabilities changed?

Exercise 9.4.

Kahneman [2011, p. 166] gives the following example.

A cab was involved in a hit-and-run accident at night. Two cab companies, Green and Blue, operate in the city. You are given the following data:

  • 85% of the cabs in the city are Green and 15% are Blue.

  • A witness identified the cab as Blue. The court tested the reliability of the witness in the circumstances that existed on the night of the accident and concluded that the witness correctly identifies each one of the two colors 80% of the time and fails 20% of the time.

What is the probability that the cab involved in the accident was Blue?

  • (a)

    Represent this story as a belief network. Explain all variables and conditional probabilities. What is observed, what is the answer?

  • (b)

    Suppose there were three independent witnesses, two of whom claimed the cab was Blue and one of whom claimed the cab was Green. Show the corresponding belief network. What is the probability the cab was Blue? What if all three claimed the cab was Blue?

  • (c)

    Suppose it was found that the two witnesses who claimed the cab was Blue were not independent, but there was a 60% chance they colluded. (What might this mean?) Show the corresponding belief network, and the relevant probabilities. What is the probability that the cab is Blue (both for the case where all three witnesses claim that the cab was Blue and the case where the other witness claimed the cab was Green)?

  • (d)

    In a variant of this scenario, Kahneman [2011, p. 167] replaced the first condition with: “The two companies operate the same number of cabs, but Green cabs are involved in 85% of the accidents.” How can this new scenario be represented as a belief network? Your belief network should allow observations about whether there is an accident as well as the color of the cab. Show examples of inferences in your network. Make reasonable choices for anything that is not fully specified. Be explicit about any assumptions you make.

Exercise 9.5.

Represent the same scenario as in Exercise 5.8 using a belief network. Show the network structure. Give all of the initial factors, making reasonable assumptions about the conditional probabilities (they should follow the story given in that exercise, but allow some noise). Give a qualitative explanation of why the patient has spots and fever.

Exercise 9.6.

In this question, you will build a belief-network representation of the Deep Space 1 (DS1) spacecraft considered in Exercise 5.10. Figure 5.14 depicts a part of the actual DS1 engine design.

Consider the following scenario:

  • Valves are open or closed.

  • A value can be ok, in which case the gas will flow if the valve is open and not if it is closed; broken, in which case gas never flows; stuck, in which case gas flows independently of whether the valve is open or closed; or leaking, in which case gas flowing into the valve leaks out instead of flowing through.

  • There are three gas sensors that can detect whether some gas is leaking (but not which gas); the first gas sensor detects gas from the rightmost valves (v1,,v4), the second sensor detects gas from the center valves (v5,,v12), and the third sensor detects gas from the leftmost valves (v13,,v16).

  • (a)

    Build a belief-network representation of the valves that feed into engine e1. Make sure there are appropriate probabilities.

  • (b)

    Test your model on some non-trivial examples.

Exercise 9.7.

Consider the following belief network:

[Uncaptioned image]

with Boolean variables (A=true is written as a and A=false as ¬a, and similarly for the other variable) and the following conditional probabilities:

P(a)=0.9P(db)=0.1P(b)=0.2P(d¬b)=0.8P(ca,b)=0.1P(ec)=0.7P(ca,¬b)=0.8P(e¬c)=0.2P(c¬a,b)=0.7P(fc)=0.2P(c¬a,¬b)=0.4P(f¬c)=0.9.
  • (a)

    Compute P(e) using variable elimination (VE). You should first prune irrelevant variables. Show the factors that are created for a given elimination ordering.

  • (b)

    Suppose you want to compute P(e¬f) using VE. How much of the previous computation is reusable? Show the factors that are different from those in part (a).

Exercise 9.8.

Sam suggested that the recursive conditioning algorithm only needs to cache answers resulting from forgetting, rather than all answers. Is Sam’s suggestion better (in terms of space or search space reduced) than the given code for a single query? What about for multiple queries that share a cache? Give evidence (either theoretical or empirical) for your results.

Exercise 9.9.

Explain how to extend VE to allow for more general observations and queries. In particular, answer the following:

  • (a)

    How can the VE algorithm be extended to allow observations that are disjunctions of values for a variable (e.g., of the form X=aX=b)?

  • (b)

    How can the VE algorithm be extended to allow observations that are disjunctions of values for different variables (e.g., of the form X=aY=b)?

  • (c)

    How can the VE algorithm be extended to allow for the probability on a set of variables (e.g., asking for the P(X,Ye))?

Exercise 9.10.

In a nuclear research submarine, a sensor measures the temperature of the reactor core. An alarm is triggered (A=true) if the sensor reading is abnormally high (S=true), indicating an overheating of the core (C=true). The alarm and/or the sensor could be defective (S_ok=false, A_ok=false), which causes them to malfunction. The alarm system is modeled by the belief network of Figure 9.39.

Refer to caption
Figure 9.39: Belief network for a nuclear submarine
  • (a)

    What are the initial factors for this network? For each factor, state what it represents and what variables it is a function of.

  • (b)

    Show how VE can be used to compute the probability that the core is overheating, given that the alarm does not go off; that is, P(c¬a). For each variable eliminated, show which variable is eliminated, which factor(s) are removed, and which factor(s) are created, including what variables each factor is a function of. Explain how the answer is derived from the final factor.

  • (c)

    Suppose we add a second, identical sensor to the system and trigger the alarm when either of the sensors reads a high temperature. The two sensors break and fail independently. Give the corresponding extended belief network.

Exercise 9.11.

This exercise continues Exercise 5.14.

  • (a)

    Explain what knowledge (about physics and about students) a belief-network model requires.

  • (b)

    What is the main advantage of using belief networks over using abductive diagnosis or consistency-based diagnosis in this domain?

  • (c)

    What is the main advantage of using abductive diagnosis or consistency-based diagnosis over using belief networks in this domain?

Exercise 9.12.

Extend Example 9.30 so that it includes the state of the animal, which is either sleeping, foraging, or agitated.

If the animal is sleeping at any time, it does not make a noise, does not move, and at the next time point it is sleeping with probability 0.8 or foraging or agitated with probability 0.1 each.

If the animal is foraging or agitated, it tends to remain in the same state of composure (with probability 0.8), move to the other state of composure with probability 0.1, or go to sleep with probability 0.1.

If the animal is foraging in a corner, it will be detected by the microphone at that corner with probability 0.5, and if the animal is agitated in a corner, it will be detected by the microphone at that corner with probability 0.9. If the animal is foraging in the middle, it will be detected by each of the microphones with probability 0.2. If it is agitated in the middle, it will be detected by each of the microphones with probability 0.6. Otherwise, the microphones have a false positive rate of 0.05.

  • (a)

    Represent this as a two-stage dynamic belief network. Draw the network, give the domains of the variables and the conditional probabilities.

  • (b)

    What independence assumptions are embedded in the network?

  • (c)

    Implement either variable elimination or particle filtering for this problem.

  • (d)

    Does being able to hypothesize the internal state of the agent (whether it is sleeping, foraging, or agitated) help localization? Explain why.

Exercise 9.13.

Suppose Sam built a robot with five sensors and wanted to keep track of the location of the robot, and built a hidden Markov model (HMM) with the following structure (which repeats to the right):

[Uncaptioned image]
  • (a)

    What probabilities does Sam need to provide? You should label a copy of the diagram, if that helps explain your answer.

  • (b)

    What independence assumptions are made in this model?

  • (c)

    Sam discovered that the HMM with five sensors did not work as well as a version that only used two sensors. Explain why this may have occurred.

Exercise 9.14.

Consider the problem of filtering in HMMs.

  • (a)

    Give a formula for the probability of some variable Xj given future and past observations. You can base this on Equation 9.6. This should involve obtaining a factor from the previous state and a factor from the next state and combining them to determine the posterior probability of Xk. [Hint: Consider how VE, eliminating from the leftmost variable and eliminating from the rightmost variable, can be used to compute the posterior distribution for Xj.]

  • (b)

    Computing the probability of all of the variables can be done in time linear in the number of variables by not recomputing values that were already computed for other variables. Give an algorithm for this.

  • (c)

    Suppose you have computed the probability distribution for each state S1, …, Sk, and then you get an observation for time k+1. How can the posterior probability of each variable be updated in time linear in k? [Hint: You may need to store more than just the distribution over each Si.]

Exercise 9.15.

Which of the following algorithms suffers from underflow (real numbers that are too small to be represented using double precision floats): rejection sampling, importance sampling, particle filtering? Explain why. How could underflow be avoided?

Exercise 9.16.
  • (a)

    What are the independence assumptions made in the naive Bayes classifier for the help system of Example 9.36.

  • (b)

    Are these independence assumptions reasonable? Explain why or why not.

  • (c)

    Suppose we have a topic-model network like the one of Figure 9.29, but where all of the topics are parents of all of the words. What are all of the independencies of this model?

  • (d)

    Give an example where the topics would not be independent.

Exercise 9.17.

How well does particle filtering work for Example 9.48? Try to construct an example where Gibbs sampling works much better than particle filtering. [Hint: Consider unlikely observations after a sequence of variable assignments.]