4.4. Conditional Distributions#

To understand the relation between two variables we must examine the conditional behavior of each of them given the value of the other. Towards this goal, we will start by examining the example of the previous section and then develop the general theory.

In our example, the joint distribution of \(X\) and \(Y\) is given by joint_table. Here we also display the marginal distribution of \(X\).

joint_table.marginal('X')
X=0 X=1 X=2
Y=5 0.00000 0.0000 0.03125
Y=4 0.00000 0.0625 0.09375
Y=3 0.03125 0.1875 0.09375
Y=2 0.09375 0.1875 0.03125
Y=1 0.09375 0.0625 0.00000
Y=0 0.03125 0.0000 0.00000
Sum: Marginal of X 0.25000 0.5000 0.25000

Now suppose we know that \(Y = 3\). Then the outcome space is reduced to just the cells in the row labeled Y=3.

def indicator_Y_equals_3(i, j):
    return j == 3

joint_table.event(indicator_Y_equals_3, 'X', 'Y')
P(Event) = 0.31250000000000017
X=0 X=1 X=2
Y=5
Y=4
Y=3 0.03125 0.1875 0.09375
Y=2
Y=1
Y=0

Of course, the probabilities along this row don’t sum to 1. Their sum is \(P(Y = 3) = 0.3125\).

By the division rule, for each \(x = 0, 1, 2\) we have

\[ P(X = x \mid Y = 3) ~ = ~ \frac{P(X = x, Y = 3)}{P(Y = 3)} \]

By normalizing all the probabilities in the row by their sum, we get the conditional distribution of \(X\) given \(Y=3\).

\[\begin{split} \begin{align*} P(X = 0 \mid Y = 3) ~ &= ~ \frac{0.03125}{0.3125} = 0.1 \\ \\ P(X = 1 \mid Y = 3) ~ &= ~ \frac{0.1875}{0.3125} = 0.6 \\ \\ P(X = 2 \mid Y = 3) ~ &= ~ \frac{0.09375}{0.3125} = 0.3 \end{align*} \end{split}\]

Compare this conditional distribution to the unconditional distribution of \(X\):

\[ P(X = 0) ~ = ~ 0.25, ~~~~~ P(X = 1) ~ = ~ 0.5, ~~~~~ P(X = 2) ~ = ~ 0.25 \]

The two distributions are different. Given \(Y = 3\), the chance that \(X\) is large is higher than it is if we don’t have that condition.

This shows that \(X\) and \(Y\) are dependent. We will define dependence and independence formally in the next section.

Quick Check

Find the following (without using Python) based on the joint distribution in the example above.

(a) \(P(X=0 \mid Y=1)\)

(b) the conditional distribution of \(X\) given \(Y=1\)

(c) the conditional distribution of \(X\) given \(Y=5\)

4.4.1. Conditional Distribution of \(X\) given \(Y = y\)#

The conditional_dist method operates on a joint distribution object and displays conditional distributions, as follows.

# conditional distribution of X given each different value of Y

joint_table.conditional_dist('X', 'Y') 
X=0 X=1 X=2 Sum
Dist. of X | Y=5 0.00 0.0 1.00 1.0
Dist. of X | Y=4 0.00 0.4 0.60 1.0
Dist. of X | Y=3 0.10 0.6 0.30 1.0
Dist. of X | Y=2 0.30 0.6 0.10 1.0
Dist. of X | Y=1 0.60 0.4 0.00 1.0
Dist. of X | Y=0 1.00 0.0 0.00 1.0
Marginal of X 0.25 0.5 0.25 1.0

To understand this table, start with the row labeled Y=3. The entries are the probabilities in the conditional distribution of \(X\) given \(Y=3\).

In the row labeled Y=1, the entries are the probabilities in the conditional distribution of \(X\) given \(Y=1\). Notice that if \(Y=1\) then \(X\) can’t be 2. You can go back and confirm that in the joint distribution table, \(P(X = 2, Y = 1) = 0\).

All the other rows can be understood in the same way. In row \(y\), the given condition is \(Y=y\), and the entries are the probabilities in the conditional distribution of \(X\) given \(Y=y\).

It is easy to see why each row in the table of conditional distributions sums to 1. The value in each cell in the row is obtained from the joint distribution table by taking the corresponding cell in that table and dividing its entry by the sum of the entries in the row.

4.4.2. The Theory#

We can now generalize the calculations we did in the example above.

Let \(X\) and \(Y\) be two random variables defined on the same space. If \(x\) is a possible value of \(X\), and \(y\) and possible value of \(Y\), then

\[ P(X = x \mid Y = y) = \frac{P(X = x, Y = y)}{P(Y = y)} \]

The conditional probability \(P(X = x \mid Y = y)\) is displayed in the \((x, y)\) cell of the table of conditional distributions above.

For a fixed value \(y^*\) of \(Y\), the conditional distribution of \(X\) given \(Y = y^*\) is the collection of probabilities

\[ P(X = x \mid Y = y^*) = \frac{P(X = x, Y = y^*)}{P(Y = y^*)} \]

where \(x\) ranges over all the values of \(X\). Keep in mind that \(x\) represents the values of the variable here. The value \(y^*\) is the particular value of \(Y\) that was observed, so it is a constant.

4.4.3. The Probabilities in a Conditional Distribution Sum to 1#

In a distribution, the probabilities have to sum to 1. To see that this is true for the conditional distribution defined above, start by using the fundamental rule.

Find \(P(Y = y^*)\) by partitioning the event \(\{ Y = y^* \}\) according to the values of \(X\):

\[ P(Y = y^*) = \sum_{\text{all }x} P(X = x, Y = y^*) \]

Now sum the probabilities in the conditional distribution of \(X\) given \(Y = y^*\):

\[\begin{split} \begin{align*} \sum_{\text{all }x} P(X = x \mid Y = y^*) ~ &= ~ \sum_{\text{all }x} \frac{P(X = x, Y = y^*)}{P(Y = y^*)} \\ \\ &= ~ \frac{1}{P(Y = y^*)} \sum_{\text{all }x} P(X = x, Y = y^*) \\ &= ~ \frac{1}{P(Y = y^*)} \cdot P(Y = y^*) \\ \\ &= ~ 1 \end{align*} \end{split}\]

Thus the conditional distribution is just an ordinary probability distribution: a set of values with probabilities that sum to 1.