In case you’d want to know: I’m a 6th grade student and I am self-learning probability (that’s one of the things).
I know Bayes’ theorem:
$$ P(A | B) = \frac{P(B | A) \cdot P(A)}{P(B)} $$
Here’s an example:
$A$: The chance you get sick, which could be $P(A) = 0.000219$.
$B$: The chance you test negative, which could be $P(B) = 0.9993$.
Our goal is to find $P(A | B)$ which is the chance you are sick given you test negative. This is basically the false negative rate.
There are three things we need:
- The chance you get sick, which we have: it’s $0.021$.
- The chance you test negative, which we also have: it’s $0.9993$.
- The chance you test negative given you are sick, which we don’t know. This is the specificity.
To find the false negative rate, what would we do? We need $P(B | A)$ to find $P(A | B)$, but how do we find $ P(B | A)$ when we only know $P(A)$ and $P(B)$ (assuming we don’t have things like data sets at hand)?
You cannot. $P(B|A) = P(B \cap A)/P(A)$, so in order to know $P(B|A)$ or $P(A|B)$ you at least need knowledge of $P(A \cap B)$, which you can't in general determine using only $P(A)$ and $P(B)$.