Conditional Probability - Solving for Unknown

1.5k Views Asked by At

Given: P(A) = 0.3 and P(A | B) = 0.1

Desired: Value of P(B).

What is the proper way of going about to solve this with only the two pieces of information given?

Thanks

4

There are 4 best solutions below

1
On BEST ANSWER

Note that by the law of total probability, we have $$\begin{align*} 0.3 \Pr[A] &= \Pr[A \mid B]\Pr[B] + \Pr[A \mid \bar B]\Pr[\bar B] \\ &= 0.1 \Pr[B] + \Pr[A \mid \bar B](1 - \Pr[B]). \end{align*}$$ It follows that $$\Pr[B] = \frac{0.3 - \Pr[A \mid \bar B]}{0.1 - \Pr[A \mid \bar B]}.$$ Since $\Pr[B]$ and $\Pr[A \mid \bar B]$ are between $0$ and $1$ if and only if $0.3 \le \Pr[A \mid \bar B] \le 1$, we find that $0 \le \Pr[B] \le 7/9$, and that any value in this interval is attainable for a suitable choice of $\Pr[A \mid \bar B]$.

1
On

Note that:

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

then

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

0
On

Generally, $$P(A\cap B)=P(A|B)P(B)=P(B|A)P(A),$$ so if $P(A|B)>0$ then $$P(B) = \frac{P(B|A)P(A)}{P(A|B)}.$$ Now you're given $P(A)$ and $P(A|B)$, but the problem cannot be solved without also knowing $P(B|A)$.

0
On

As @AsdrubalBeltran's formula says, the value of $P(A\cap B)$ should be given to decide $P(B)$. Hence your problem is undecidable.