Bayesian Network
Consider the Naive Bayes network given below. Given the evidence:
E = {temp > 37.5}, compute the probability of flu i.e., P(flu | temp > 37.5).
Myalgia y/n
P(myalgia | flu) = 0.96
P(myalgia | pneu) = 0.28
Disease pneu/flu
P(flu) = 0.67
P(pneu) = 0.33
Fever y/n
P(fever | flu) = 0.88
P(fever | pneu) = 0.82
TEMP <= 37.5 / > 37.5
P(TEMP <= 37.5 | flu) = 0.20
P(TEMP <= 37.5 | pneu) = 0.26