Chapter 16 Introduction to Bayes Theorem Flashcards

1
Q

P(A|B) ≠ P(B|A)
True/False P 150

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

One conditional probability can be calculated using the other conditional probability. This is called Bayes Theorem, how is it formulated? P 150

A

P(A|B) = P(B|A) * P(A) / P(B)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the definition of Bayes Theorem? P 150

A

Bayes Theorem: Principled way of calculating a conditional probability without the joint probability.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

It is often the case that we do not have access to the denominator directly, e.g. P(B). We can calculate it an alternative way, for example: ____This gives a formulation of Bayes Theorem that uses the alternate calculation of P(B). P 150

A

P(B) = P(B|A) × P(A) + P(B|not A) × P(not A) P(A|B) = P(B|A) × P(A) /(P(B|A) × P(A) + P(B|not A) × P(not A))

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

P(B|not A) = 1 − P(not B|not A) True/False P 150

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What are the names of the below terms, in Bayes Theorem? P 151
ˆ P(A|B)
ˆ P(A)
ˆ P(B|A)
ˆ P(B)

A

Posterior probability, Prior probability, Likelihood, Evidence

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

We can also think about the calculations in the terms of a binary classifier. What are each of the below probabilities’ equivalent in terms of binary classification? P 151
ˆ P(not B|not A)
ˆ P(B|not A)
ˆ P(not B|A)
ˆ P(B|A)
ˆ P(A|B)

A

ˆ P(not B|not A): True Negative Rate or TNR (specificity). ˆ P(B|not A): False Positive Rate or FPR. ˆ P(not B|A): False Negative Rate or FNR. ˆ P(B|A): True Positive Rate or TPR (sensitivity or recall). ˆ P(A|B): Positive Predictive Value or PPV (precision).

Look at it like: P(pred 1 given ground truth 0)= FP/TN+FP= P(B| not A)= FPR
P(truth 1 given pred 1)= TP/(TP+FP)= Precision

                       B(pred)
	      	            0  1
                      0 TN FP
          A(truth)  
                      1 FN TP
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

How may we re-state the calculation using these terms in terms of binary classification? P 151
P(A|B) = P(B|A) × P(A) /(P(B|A) × P(A) + P(B|not A) × P(not A))

A

P P V = T P R × P(A) /(T P R × P(A) + F P R × P(not A))

How well did you know this?
1
Not at all
2
3
4
5
Perfectly