[Math] Independence of Events and Conditional Probability

conditional probabilityindependenceprobability

A person tried by a 3-judge panel is declared guilty if at least 2 judges cast votes of guilty. Suppose that when the defendant is in fact guilty, each judge will independently vote guilty with probability 0.7, whereas when the defendant is in fact innocent, this probability drops to 0.2. Assume 70 percent of defendants are guilty.

  1. Let Ei, i = 1, 2, 3 denote the event that judge i casts a guilty vote. Are these events independent? Explain
  2. Are Ei’s, i = 1, 2, 3, conditionally independent? Explain.
  3. Compute the conditional probability that judge number 3 votes guilty given that judges 1 and 2 vote guilty.

I am honestly stuck on where to even start with this problem. I would assume that the events are independent because the problem states it as such.

Best Answer

I will just do the first part, because the other parts are similar.

You want to find the probability that $J_3$ votes guilty given the info that $J_1$ and $J_2$ votes guilty, and for this, we first need the probability that $J_1$ and $J_2$ even votes guilty in the first place.

Let $J_{ig}$ denote the event that judge $i$ votes guilty.

\begin{align} P(J_{1g}, J_{2g})&=P(J_{1g}, J_{2g}|\text{defendant is guilty})P(\text{defendant is guilty})\\ &+P(J_{1g}, J_{2g}|\text{defendant is innocent})P(\text{defendant is innocent}) \\ &=\left(\frac{7}{10}\right)^2\left(\frac{7}{10}\right)+\left(\frac{3}{10}\right)^2\left(\frac{2}{10}\right)\\ &=\frac{71}{200} \end{align}

Moving on to the required probability: \begin{align} P(J_{3g}|J_{1g}, J_{2g})&=\frac{P(J_{3g}, J_{1g}, J_{2g}|\text{def guilty})P(\text{def guilty})+P(J_{3g}, J_{1g}, J_{2g}|\text{def innocent})P(\text{def innocent})}{P(J_{1g}, J_{2g})}\\ &=\frac{\left(\frac{7}{10}\right)^3\left(\frac{7}{10}\right)+\left(\frac{2}{10}\right)^3\left(\frac{3}{10}\right)}{\frac{71}{200}}\\ &=\frac{97}{142} \end{align}

Related Question