So I found myself in a infinite loop while trying to do some probability. If A and B are independent, calculating P(A ∩ B) is as simple as P(A)P(B). However, how do I calculate P(A ∩ B) if they are dependent? I know P(A∣B)⋅P(B)=P(A∩B).
example: Charlie and Doug take turns rolling two dice, Charlie goes first. If Charlie rolls a sum of 6 before Doug rolls a sum of 7, Charlie wins. What is the probability Charlie wins.
Solution attempt:
P(Charlie wins) = P(Charlie rolls 6, 1st turn) + P(Charlie rolls 6 | Charlie and Doug don't win previous rounds)
= 5/36 + P(Charlie rolls 6 ∩ Charlie and Doug don't win previous rounds)*P(Charlie and Doug don't win previous rounds)
= 5/36 + P(Charlie rolls 6 ∩ Charlie and Doug don't win previous rounds)*P(Charlie doesn't win previous)P(Doug doesn't win previous)
= 5/36 + P(Charlie rolls 6 ∩ Charlie and Doug don't win previous rounds)(31/36)*(30/36)
Now this is where I'm stuck, as I don't know how to calculate P(Charlie rolls 6 ∩ Charlie and Doug don't win previous rounds). Can anyone give me some pointers?