2

Use Bayes' theorem or a tree diagram to calculate the indicated probability. Round your answer to four decimal places. P(A | B) = .9, P(B) = .6, P(A | B') = .8. Find P(B | A).

We don't have an example like this in class so I was wondering if someone could help me figure out how to solve it.

  • 1
    Here are a couple of hints: State Bayes's Theorem. Can you calculate $P(B^\prime)$, which is the complement of $P(B)$? How about $P(A)$? Can you use Bayes' theorem now? – Larry B. Oct 21 '16 at 22:03
  • Is P(B')=.4? I still don't think I am doing it correctly – user344249 Oct 21 '16 at 22:13

1 Answers1

2

Bayes theorem:

$$P(B|A)=\frac{P(A|B)P(B)}{P(A)}$$

So you only need to find $P(A)$. Use the law of total probability:

$$P(A)=P(A|B)P(B)+P(A|B')P(B')$$

and notice that $$P(B')=1-P(B)$$

msm
  • 7,147