10 Conditional Distributions
- The joint distribution of random variables
and is a probability distribution on pairs, and describes how the values of and vary together or jointly. - We can also study conditional distributions of random variables given the values of some random variables. How does the distribution of
change for different values of (and vice versa)?
Example 10.1
Roll a fair four-sided die twice. Let
1 | 2 | 3 | 4 | Total | |
2 | 1/16 | 0 | 0 | 0 | 1/16 |
3 | 0 | 2/16 | 0 | 0 | 2/16 |
4 | 0 | 1/16 | 2/16 | 0 | 3/16 |
5 | 0 | 0 | 2/16 | 2/16 | 4/16 |
6 | 0 | 0 | 1/16 | 2/16 | 3/16 |
7 | 0 | 0 | 0 | 2/16 | 2/16 |
8 | 0 | 0 | 0 | 1/16 | 1/16 |
Total | 1/16 | 3/16 | 5/16 | 7/16 |
- Compute
.
- Construct a table, plot, and spinner to represent the conditional distribution of
given .
- Construct a table, plot, and spinner to represent the conditional distribution of
given .
- Construct a table, plot, and spinner to represent the conditional distribution of
given .
- Construct a table, plot, and spinner to represent the conditional distribution of
given .
- Compute
.
- Construct a table, plot, and spinner to represent the distribution of
given .
- Construct a table, plot, and spinner to represent the distribution of
given .
- Construct a table, plot, and spinner to represent the distribution of
given .
- The conditional distribution of
given is the distribution of values over only those outcomes for which . It is a distribution on values of only; treat as a fixed constant when conditioning on the event . - Conditional distributions can be obtained from a joint distribution by slicing and renormalizing. The conditional distribution of
given , where represents a particular number, can be thought of as:- the slice of the joint distribution corresponding to
, a distribution on values of alone with fixed - renormalized so that the slice accounts for 100% of the probability over the values of
- the slice of the joint distribution corresponding to
- The shape of the conditional distribution of
given is determined by the shape of the slice of the joint distribution over values of for the fixed . - For each fixed
, the conditional distribution of given is a different distribution on values of the random variable . There is not one “conditional distribution of given ”, but rather a family of conditional distributions of given different values of . - Each conditional distribution is a distribution, so we can summarize its characteristics like mean and standard deviation. The conditional mean and standard deviation of
given represent, respectively, the long run average and variability of values of over only pairs with . - Since each value of
typically corresponds to a different conditional distribution of given , the conditional mean and standard deviation will typically be functions of .
Example 10.2
We have already discussed two ways for simulating an
- Now describe another way for simulating an
pair using the spinners in Example 10.1. (Hint: you’ll need one more spinner in addition to the four from the previous example.)
- Describe in detail how you can simulate
pairs and use the results to approximate .
- Describe in detail how you can simulate
pairs and use the results to approximate the conditional distribution of given .
- Describe in detail how you can simulate values from the conditional distribution of
given without simulating pairs.
- We have seen that the long run average value of
is 5. Would you expect the conditional long run average value of given to be greater than, less than, or equal to 5? Explain without doing any calculations. What about given ?
- How could you use simulation to approximate the conditional long run average value of
given ?
- Rather than directly simulating from a joint distribution, we can simulate an
pair in two stages:- Simulate a value of
from its marginal distribution. Call the simulated value . - Given
, simulate a value of from the conditional distribution of given . There will be a different distribution (spinner) for each possible value of .
- Simulate a value of
- This “marginal then conditional” process is essentially implementing the multiplication rule
- In many problems a joint distribution is nsturally described by specifying the marginal distribution of
and the family of conditional distributions of given values of
Example 10.3 consider again the case of the meeting problem which assumes that the
Provide answers to the following questions without doing any calculations. It helps to think of the “long run” here as Regina and Cady meeting for lunch each day over many days.
- Interpret
in context. Is greater than, less than, or equal to ?
- Interpret
in context. Is greater than, less than, or equal to ?
- Interpret
in context. Is greater than, less than, or equal to ?
- Interpret the conditional long run average value of
given in context. Is it greater than, less than, or equal to 30?
- Interpret the conditional long run average value of
given in context. Is it greater than, less than, or equal to 30?
- Interpret the conditional standard deviation of
given in context. Is it greater than, less than, or equal to 10?
- Interpret the conditional standard deviation of
given in context. Is it greater than, less than, or equal to 10?
Example 10.4
Donny Don’t writes the following Symbulate code to approximate the conditional distribution of
R, Y = RV(BivariateNormal(mean1 = 30, sd1 = 10, mean2 = 30, sd2 = 10, corr = 0.7))
(Y | (R == 40) ).sim(10000)
- Be careful when conditioning with continuous random variables. Remember that the probability that a continuous random variable is equal to a particular value is 0; that is, for continuous
, . - Mathematically, when we condition on we are really conditioning on — the event that the random variable is within of the value — and seeing what happens in the idealized limit when . - Practically,
represents our “close enough” degree of precision, e.g., if “within 0.01” is close enough. - When conditioning on a continuous random variable
in a simulation, never condition on ; rather, condition on where represents the suitable degree of precision.
Example 10.5
In the meeting problem, assume that
- How can we simulate a value of
using only the standard Normal spinner?
- Suppose the simulated value of
is 40. What is the distribution that we want to simulate the corresponding value from?
- How can we simulate a value of
from the distribution in the previous part using only the standard Normal spinner?
- Now suppose the simulated value of
is 15. What is the distribution that we want to simulate the corresponding value from?
- How can we simulate a value of
from the distribution in the previous part using only the standard Normal spinner?
- Suggest a general method for simulating an
pair.
- Simulate many
pairs and summarize the results, including the correlation. How does the simulated joint distribution compare to the Bivariate Normal distribution from Example 10.3?
- What is the approximate marginal distribution of
?
Be sure to distinguish between joint, conditional, and marginal distributions.
- The joint distribution of
and is a distribution on pairs. A mathematical expression of a joint distribution is a function of both values of and values of . - The conditional distribution of
given is a distribution on values (among pairs with a fixed value of ). A mathematical expression of a conditional distribution will involve both and , but is treated like a fixed constant and is treated as the variable. Note: the possible values of might depend on the value of . - The marginal distribution of
is a distribution on values only, regardless of the value of . A mathematical expression of a marginal distribution will have only values of the single variable in it; for example, an expression for the marginal distribution of will only have in it (no , not even in the possible values).