Reputation: 1
For a network like the above directed graph, how do I find joint probability of three continuous random variables A,B,C.
Upvotes: 0
Views: 710
Reputation: 8163
With Bayes' theorem
P(A,B,C) = P(C | A,B) * P(A,B)
= P(C | A,B) * P(A) * P(B) (because A and B are independent)
Upvotes: 0