13. Probability Theory 1 Flashcards

1
Q

What is uncertainty in AI?

A

The inability to predict an outcome due to incomplete, noisy, or complex data.

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

Why is reasoning under uncertainty important?

A

AI agents must make decisions with incomplete or uncertain knowledge, such as predicting traffic delays or medical diagnoses.

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

What is decision theory?

A

A framework that combines probability theory (beliefs) and utility theory (desires) to determine the best action.

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

What is Bayesian probability?

A

A framework that assigns probabilities to propositions based on an agent’s state of knowledge rather than absolute truth.

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

What are random variables?

A

Variables that represent uncertain aspects of the world and have a domain of possible values.

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

What are examples of random variables?

A

Boolean variables (e.g., “Is it raining?”), Categorical variables (e.g., “Temperature: Hot, Cold”), Continuous variables (e.g., “Wind speed in knots”).

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

What are the fundamental properties of probability?

A

(1) ∀x: 0 ≤ P (A = x) ≤ 1 (2) P(True) = 1, P(False) = 0
(3) ∑_x P (A = x) = 1
(4) ¬P (a) = 1 − P(a)
(5) ∀ a, b ∈ D: P (a ∨ b) = P (a) + P (b) − P(a, b)

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

What is a probability distribution?

A

A function describing the likelihood of all possible values a random variable can take.

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

What is an atomic event?

A

A complete specification of the state of all random variables in a given world.

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

What is a joint probability distribution?

A

A table listing the probability of every possible combination of random variable values.

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

What is marginal probability?

A

The probability of a single event occurring, computed by summing over relevant rows of a joint probability table.

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

What is conditional probability?

A

The probability that one event occurs given that another has occurred, denoted as 𝑃(𝑋 = 𝑎 | 𝑌 = 𝑏) or 𝑃(𝑎 | 𝑏)

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

What is the product rule of probability?

A

𝑃 (𝑎, 𝑏) = 𝑃(𝑎 | 𝑏) 𝑃 (𝑏) = 𝑃(𝑏 | 𝑎) 𝑃(𝑎)

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

What is the Law of Total Probability?

A

A rule that computes the probability of an event, A, by summing over conditional probabilities: P(A) = \sum_{n} P( a | b_{n}) P(b_n)

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

What is Bayes’ Rule?

A

A fundamental theorem stating: P(a | b) = \frac{P(b)}{P(b | a)} P(a)

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

Why is Bayes’ Rule useful?

A

It allows reasoning from effects to causes, such as diagnosing a disease from observed symptoms.

17
Q

What is an example application of Bayes’ Rule?

A

Determining the probability of having meningitis given that a patient has a stiff neck.

18
Q

Why are causal models better than diagnostic models?

A

Because diagnostic knowledge is often more fragile than causal knowledge.

19
Q

How does normalization help with probability calculations?

A

Instead of computing P(effect) directly, we normalize probabilities using the sum over all possible causes.