Does somebody know why the following equation holds?
$$P(A,B|C) = P(A|B,C) P(B|C)$$
Which rule is used? I think it is not Bayes' rule.
Does somebody know why the following equation holds?
$$P(A,B|C) = P(A|B,C) P(B|C)$$
Which rule is used? I think it is not Bayes' rule.
You just need to use the rule $P(Y|X) = \frac{P(Y,X)}{P(X)}$: $$ \begin{align} P(A,B|C) &= \frac{P(A,B,C)}{P(C)} \\ &= \frac{P(A|B,C)P(B,C)}{P(C)} \\ &= P(A|B,C)\frac{P(B,C)}{P(C)} \\ &= P(A|B,C)P(B|C) \end{align} $$