Reputation: 13
I have probability P(A|B=T,C=F,D=F,G=T) is this same as computing P(A|B=T)*P(A|C=F)*P(A|D=F) *P(A|G=T) ? P(A|B=T,C=F,D=F,G=T)=P(A|B=T)*P(A|C=F)*P(A|D=F) *P(A|G=T) ? where A is the child of B, C, D, G thanks!
Upvotes: 0
Views: 226
Reputation: 79581
In general it is not true that the following holds.
P(A|B,C) = P(A|B) • P(A|C)
The following is true, however. (Bayes' theorem)
P(B,C|A) • P(A)
P(A|B,C) = ━━━━━━━━
P(B,C)
Furthermore, if B and C are conditionally independent given A, the following is true.
P(A|B,C) ∝ P(B|A) • P(C|A) • P(A)
Upvotes: 1