Bayes' Theorem Total Probability Confusion

55 Views Asked by At

In my intro stats class, we are learning about Bayes' theorem, and I am a bit confused. In an example problem, we are given that for a medical patient:

$P(\text{death} | \text{2 organ failures}) = 0.85$

I am trying to calculate what

$P(\text{survival} | \text{2 organ failures})$ should be. I am not sure how to apply the total probability here, so should it be just 1 - 0.85 = 0.15?

Thanks.

1

There are 1 best solutions below

0
On BEST ANSWER

Let $D$ denote the event of death and $O$ the event associated to the failure of two organs. Since $O = O\cap\Omega = O\cap(D\cup\overline{D}) = (O\cap D)\cup(O\cup\overline{D})$ and $(O\cap D)\cap(O\cap\overline{D}) = \varnothing$, where $\Omega$ is the sample space, one has \begin{align*} &\textbf{P}(O) = \textbf{P}(O\cap D) + \textbf{P}(O\cap\overline{D}) \Longrightarrow \textbf{P}(O\cap\overline{D}) = \textbf{P}(O) - \textbf{P}(O\cap D) \Longrightarrow\\\\ & \textbf{P}(\overline{D}| O) = \frac{\textbf{P}(\overline{D}\cap O)}{\textbf{P}(O)} = \frac{\textbf{P}(O) - \textbf{P}(O\cap D)}{\textbf{P}(O)} = 1 - \frac{\textbf{P}(O\cap D)}{\textbf{P}(O)} = 1 - \textbf{P}(D|O) \end{align*}

$\therefore \textbf{P}(\overline{D}|O) = 1 - 0.85 = 0.15$

Another possible (and direct) approach consists in observing that the conditional probability is a probability measure itself. Therefore we have that $\textbf{P}(D|O) = 1 - \textbf{P}(\overline{D}|O)$. Hope this helps.