Probability Flashcards

(29 cards)

1
Q

What does probability help us reason about in ML?

A

Uncertainty, randomness, and incomplete information.

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

In the apple bowl example, what are the two random variables?

A

The bowl selected (s) and the apple colour (y).

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

What does a marginal probability represent?

A

The probability of a single event without reference to other variables.

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

What is a joint probability?

A

The probability that two events occur together.

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

What is a conditional probability?

A

The probability of an event given that another event is known to have occurred.

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

What is the formula for conditional probability?

A

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

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

What does Bayes’ Rule let us do?

A

Update our beliefs about causes after seeing an effect.

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

What is the formula for Bayes’ Rule?

A

P(s | y) = P(y | s) * P(s) / P(y)

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

In Bayes’ Rule, what is the ‘prior’?

A

P(s), the probability before seeing data.

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

In Bayes’ Rule, what is the ‘posterior’?

A

P(s | y), the updated belief after seeing data.

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

In probability, what is the sample space?

A

The set of all possible outcomes of an experiment.

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

What must the total probability over the sample space equal?

A

1

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

Why can’t we assign probabilities to exact values in continuous space?

A

Because the probability at any exact point is zero.

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

What does a probability density function (PDF) represent?

A

How likely a value is to occur near a specific point in continuous space.

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

How do we compute the probability of a range in continuous space?

A

By integrating the PDF over that interval.

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

What is a histogram in probability estimation?

A

An approximation of a PDF by counting frequencies in intervals (bins).

17
Q

What is the formula for expectation in discrete space?

A

E[x] = sum of x * P(x)

18
Q

What does expectation represent intuitively?

A

The average or central tendency of a random variable.

19
Q

What is the formula for variance?

A

Var(x) = E[(x - E[x])²] or E[x²] - (E[x])²

20
Q

What does variance measure?

A

How spread out the values are around the mean.

21
Q

What does covariance tell us?

A

Whether two variables increase or decrease together.

22
Q

What is correlation?

A

A normalized measure of linear dependence between variables, ranging from -1 to 1.

23
Q

What does the Bernoulli distribution model?

A

A binary outcome with success probability π.

24
Q

What does the Poisson distribution model?

A

The count of events in a fixed interval of time or space.

25
What shape does the Gaussian distribution have?
A symmetric bell curve centered at the mean.
26
When do we use the uniform distribution?
When all outcomes in an interval are equally likely.
27
What does the Law of Large Numbers say?
The sample mean converges to the true mean as the number of samples increases.
28
What does the Central Limit Theorem say?
The distribution of sample means becomes normal as sample size increases, regardless of original distribution.
29
Why is the Central Limit Theorem useful in ML?
It explains why averages and many model outputs are normally distributed.