Conditional Probability Summation Rule Problem

From Blitzstein, Introduction to Probability (2019 2 edn), Chapter 2, Exercise 25, p 87.

  1. A crime is committed by one of two suspects, A and B. Initially, there is equal evidence against both of them. In further investigation at the crime scene, it is found that the guilty party had a blood type found in 10% of the population. Suspect A does match this blood type, whereas the blood type of Suspect B is unknown.

(a) Given this new information, what is the probability that A is the guilty party?

So here is my approach. Let $A$ stands for "A gulity", $M$ for "A matching the blood type" and $N$ for "B matching the blood type". Then $$P(A|M) = P(A|M,N)P(N|M) + P(A|M,N^{C})P(N^{C}|M)$$ $$P(A|M) = \frac{1}{2}\frac{1}{10} + 1\frac{9}{10} = \frac{19}{20}$$ Here it is inferred that the blood type of B is independant of that of A and that if both have the matching blood type they are equally likely to be guilty.

Where is the flaw in the application of the summation rule above? The correct answer is $\frac{10}{11}$.


Solution 1:

Let the blood type found at crime seen be X.

Probability that A is gulity prior to the new evidence $P(A)=1-P(B)=0.5$

Probability that blood type of X is found given A is gulty $=$ Probability that A has the blood type $P(X|A)=1$

Probability that blood type of X is found given B is guilty $=$ Probability that B has the blood type $P(X|B)=0.1$

Now it is known that blood type is X, and given exactly one of A or B is guilty,

$$P(A|X) = \frac{P(X|A)P(A)}{P(X)} = \frac{P(X|A)P(A)}{P(X|A)P(A)+P(X|B)P(B)} = \frac{10}{11}$$

Solution 2:

I made the same mistake! I think the flaw is in the assumption that B's probability of having blood type X is 10%. B is already under suspicion for the crime; before we discovered that the perp has blood type X, there was a 50% chance that B was guilty. Hence B's chances of having blood type X are higher than 10%, since, as I understand it, B's likelihood of having the guilty blood type isn't independent of his being under suspicion.

By Bayes' Rule, B's probability of having blood type X = $\frac{\frac{1}{10}}{\frac{1}{10}+\frac{9}{10}*\frac{1}{2}} = \frac{2}{11}$. Plugging that into your equation, we have A's probability of guilt = $\frac{2}{11}*\frac{1}{2} + \frac{9}{11} = \frac{10}{11}$. So your logic itself was fine, but it involved a flawed estimate of B's chances of having the guilty blood type.