I have this problem in my work. Assume I have multiple events, say A, B, C. I want to calculate probability P(ABC) But among A,B,C some of them may or may not be dependent to each other.
With regards to my work scenario, I have the values of probability P(A), P(B), P(C), and also probabilities like P(A|BC), P(B|AC),P(C|AB), P(A|C), P(B|C),P(A|B) etc. Since they are not independent, I can not use P(A,B,C)=P(A)*P(B)*P(C).
So I need to use conditional probability: P(ABC)=P(A|BC)*P(BC)=P(A|BC)*P(B|C)*P(C) Is this correct?