6PP

CS 188: Artificial Intelligence
Fall 2006
Lecture 14: Probability
10/17/2006
Announcements
ƒ Grades:
ƒ Check midterm, p1.1, and p1.2 grades in glookup
ƒ Let us know if there are problems, so we can calculate useful
preliminary grade estimates
ƒ If we missed you, tell us your partner’s login
ƒ Readers request:
ƒ List partners and logins on top of your readme files
ƒ Turn off your debug output
ƒ Project 3.1 up: written probability problems, start now!
Dan Klein – UC Berkeley
Today
ƒ Probability
ƒ
ƒ
ƒ
ƒ
Random Variables
Joint and Conditional Distributions
Bayes Rule
Independence
ƒ You’ll need all this stuff for the next few
weeks, so make sure you go over it!
Random Variables
ƒ A random variable is some aspect of the world about
which we have uncertainty
ƒ R = Is it raining?
ƒ D = How long will it take to drive to work?
ƒ L = Where am I?
ƒ We denote random variables with capital letters
ƒ Like in a CSP, each random variable has a domain
ƒ R in {true, false}
ƒ D in [0, ∞]
ƒ L in possible locations
ƒ Extra office hours: Thursday 2-3pm (if people use them)
Uncertainty
ƒ General situation:
ƒ Agent knows certain things
about the state of the world
(e.g., sensor readings or
symptoms)
ƒ Agent needs to reason about
other aspects (e.g. where an
object is or what disease is
present)
ƒ Agent knows something about
how the known variables relate
to the unknown variables
ƒ Probabilistic reasoning gives
us a framework for managing
our beliefs and knowledge
Probabilities
ƒ We generally calculate conditional probabilities
ƒ P(on time | no reported accidents) = 0.90
ƒ Probabilities change with new evidence:
ƒ P(on time | no reported accidents, 5 a.m.) = 0.95
ƒ P(on time | no reported accidents, 5 a.m., raining) =
0.80
ƒ i.e., observing evidence causes beliefs to be updated
1
Probabilistic Models
ƒ CSPs:
ƒ Variables with domains
ƒ Constraints: map from
assignments to true/false
ƒ Ideally: only certain variables
directly interact
ƒ Probabilistic models:
ƒ (Random) variables with
domains
ƒ Joint distributions: map from
assignments (or outcomes) to
positive numbers
ƒ Normalized: sum to 1.0
ƒ Ideally: only certain variables
directly interact
ƒ Assignments are called
outcomes
Distributions on Random Vars
ƒ A joint distribution over a set of random variables:
is a map from assignments (or outcomes, or atomic events) to reals:
A
B
warm
sun
P
T
warm
rain
F
cold
sun
F
T
S
P
cold
rain
T
warm
sun
0.4
warm
rain
0.1
A
B
cold
sun
0.2
warm
sun
0.4
cold
rain
0.3
warm
rain
0.1
cold
sun
0.2
cold
rain
0.3
ƒ Size of distribution if n variables with domain sizes d?
ƒ Must obey:
P
ƒ For all but the smallest distributions, impractical to write out
Examples
ƒ An event is a set E of assignments (or
outcomes)
ƒ From a joint distribution, we can calculate
the probability of any event
Marginalization
T
S
warm
sun
P
0.4
warm
rain
0.1
cold
sun
0.2
cold
rain
0.3
ƒ Marginalization (or summing out) is projecting a joint
distribution to a sub-distribution over subset of variables
T
T
ƒ Probability that it’s warm AND sunny?
ƒ Probability that it’s warm?
S
P
ƒ A conditional probability is the probability of an
event given another event (usually evidence)
0.5
cold
0.5
warm
sun
0.4
warm
rain
0.1
cold
sun
0.2
S
cold
rain
0.3
sun
0.6
rain
0.4
ƒ Probability that it’s warm OR sunny?
Conditional Probabilities
P
warm
P
Conditional Probabilities
ƒ
Conditional or posterior probabilities:
ƒ E.g., P(cavity | toothache) = 0.8
ƒ Given that toothache is all I know…
ƒ
Notation for conditional distributions:
ƒ P(cavity | toothache) = a single number
ƒ P(Cavity, Toothache) = 2x2 table summing to 1
ƒ P(Cavity | Toothache) = Two 2-element vectors, each summing to 1
ƒ
If we know more:
ƒ P(cavity | toothache, catch) = 0.9
ƒ P(cavity | toothache, cavity) = 1
T
S
P
ƒ
Note: the less specific belief remains valid after more evidence arrives, but
is not always useful
0.2
ƒ
New evidence may be irrelevant, allowing simplification:
0.3
ƒ
This kind of inference, guided by domain knowledge, is crucial
warm
sun
0.4
warm
rain
0.1
cold
sun
cold
rain
ƒ P(cavity | toothache, traffic) = P(cavity | toothache) = 0.8
2
Conditioning
Normalization Trick
ƒ Conditional probabilities are the ratio of two probabilities:
ƒ A trick to get the whole conditional distribution at once:
ƒ Get the joint probabilities for each value of the query variable
ƒ Renormalize the resulting vector
T
S
P
T
S
P
warm
sun
0.4
warm
sun
0.4
warm
rain
0.1
warm
rain
0.1
cold
sun
0.2
cold
sun
0.2
cold
rain
0.3
cold
rain
0.3
The Product Rule
sun
0.8
rain
0.2
cold
0.3
Normalize
T
P
warm
0.25
cold
0.75
ƒ Sack contains a red or blue token, 50/50
ƒ We add a red token
ƒ If we draw a red token, what’s the
chance of drawing a second red token?
ƒ Variables:
ƒ F={r,b} is the original token
ƒ D={r,b} is the first token we draw
ƒ Example: P(sun, dry)?
P
P
0.1
Lewis Carroll's Sack Problem
ƒ Sometimes joint P(X,Y) is easy to get
ƒ Sometimes easier to get conditional P(X|Y)
R
Select
T
warm
ƒ Query: P(F=r|D=r)
D
S
P
D
S
P
wet
sun
0.1
wet
sun
0.08
F
P
F
D
P
F
D
r
r
1.0
r
r
b
dry
sun
0.9
dry
sun
0.72
r
0.5
r
b
0.0
r
wet
rain
0.7
wet
rain
0.14
b
0.5
b
r
0.5
b
r
dry
rain
0.3
dry
rain
0.06
b
b
0.5
b
b
Lewis Carroll's Sack Problem
P
Bayes’ Rule
ƒ Two ways to factor a joint distribution over two variables:
ƒ Now we have P(F,D)
ƒ Want P(F=r|D=r)
That’s my rule!
F
D
P
r
r
0.5
r
b
0.0
b
r
0.25
b
b
0.25
ƒ Dividing, we get:
ƒ Why is this at all helpful?
ƒ Lets us invert a conditional distribution
ƒ Often the one conditional is tricky but the other simple
ƒ Foundation of many systems we’ll see later (e.g. ASR, MT)
ƒ In the running for most important AI equation!
3
More Bayes’ Rule
Battleship
ƒ Diagnostic probability from causal probability:
ƒ Let’s say we have two distributions:
ƒ Prior distribution over ship locations: P(L)
ƒ Say this is uniform
ƒ Sensor reading model: P(R | L)
ƒ Example:
ƒ Given by some known black box
ƒ E.g. P(R = yellow | L=(1,1)) = 0.1
ƒ For now, assume the reading is always for
the lower left corner
ƒ m is meningitis, s is stiff neck
ƒ We can calculate the posterior
distribution over ship locations using
(conditionalized) Bayes’ rule:
ƒ Note: posterior probability of meningitis still very small
ƒ Note: you should still get stiff necks checked out! Why?
Inference by Enumeration
Inference by Enumeration
ƒ General case:
ƒ P(sun)?
ƒ P(sun | winter)?
ƒ P(sun | winter, warm)?
S
T
R
summer
warm
sun
0.30
summer
warm
rain
0.05
summer
cold
sun
0.10
summer
cold
rain
0.05
winter
warm
sun
0.10
winter
warm
rain
0.05
winter
cold
sun
0.15
winter
cold
rain
0.20
P
ƒ Evidence variables:
ƒ Query variables:
ƒ Hidden variables:
All variables
ƒ We want:
ƒ First, select the entries consistent with the evidence
ƒ Second, sum out H:
ƒ Finally, normalize the remaining entries to conditionalize
ƒ Obvious problems:
ƒ Worst-case time complexity O(dn)
ƒ Space complexity O(dn) to store the joint distribution
Independence
ƒ Two variables are independent if:
ƒ This says that their joint distribution factors into a product two
simpler distributions
ƒ Independence is a modeling assumption
Example: Independence
ƒ N fair, independent coin flips:
H
0.5
H
0.5
H
0.5
T
0.5
T
0.5
T
0.5
ƒ Empirical joint distributions: at best “close” to independent
ƒ What could we assume for {Weather, Traffic, Cavity}?
ƒ How many parameters in the joint model?
ƒ How many parameters in the independent model?
ƒ Independence is like something from CSPs: what?
4
Example: Independence?
ƒ Arbitrary joint
distributions can be
poorly modeled by
independent factors
Conditional Independence
ƒ P(Toothache,Cavity,Catch) has 23 = 8 entries (7 independent
entries)
T
P
S
P
warm
0.5
sun
0.6
cold
0.5
rain
0.4
ƒ If I have a cavity, the probability that the probe catches in it doesn't
depend on whether I have a toothache:
ƒ P(catch | toothache, cavity) = P(catch | cavity)
ƒ The same independence holds if I don’t have a cavity:
ƒ P(catch | toothache, ¬cavity) = P(catch| ¬cavity)
T
S
P
T
S
P
warm
sun
0.4
warm
rain
0.1
warm
sun
0.3
warm
rain
0.2
cold
sun
0.2
cold
rain
0.3
cold
sun
0.3
cold
rain
0.2
ƒ Catch is conditionally independent of Toothache given Cavity:
ƒ P(Catch | Toothache, Cavity) = P(Catch | Cavity)
ƒ Equivalent statements:
ƒ P(Toothache | Catch , Cavity) = P(Toothache | Cavity)
ƒ P(Toothache, Catch | Cavity) = P(Toothache | Cavity) P(Catch | Cavity)
Conditional Independence
ƒ Unconditional (absolute) independence is very rare
(why?)
The Chain Rule II
ƒ Can always factor any joint distribution as an incremental
product of conditional distributions
ƒ Conditional independence is our most basic and robust
form of knowledge about uncertain environments:
ƒ Why?
ƒ What about this domain:
ƒ Traffic
ƒ Umbrella
ƒ Raining
ƒ This actually claims nothing…
ƒ What are the sizes of the tables we supply?
ƒ What about fire, smoke, alarm?
The Chain Rule III
ƒ Trivial decomposition:
Combining Evidence
ƒ Imagine we have two sensor readings
ƒ We want to calculate the distribution over
ship locations given those observations:
ƒ List the probabilities we are given
ƒ With conditional independence:
ƒ We first calculate the non-conditional
(joint) probabilities we care about
ƒ Conditional independence is our most basic and robust
form of knowledge about uncertain environments
ƒ Graphical models (next class) will help us work with
independence
ƒ Then we renormalize
5