Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

Random sampling can be thought of as repeated random trials, and therefore many outcome spaces consist of sequences. An outcome space representing two tosses of a coin is

Ω={HH,HT,TH,TT}\Omega = \{ HH, HT, TH, TT \}

If you were tossing 10 times, the outcome space would consist of the 210 sequences of 10 elements where each element is H or T. The outcomes are a pain to list by hand, but computers are good at saving us that kind of pain.

3.1.1Product Spaces

The product of two sets AA and BB is the set of all pairs (a,b)(a, b) where aAa \in A and bBb \in B. This concept is exactly what we need to describe spaces representing multiple trials.

For example, the space representing the outcome of one toss of a coin is Ω1={H,T}\Omega_1 = \{ H, T \}. The product of Ω1\Omega_1 with itself is the set of pairs (H,H)(H, H), (H,T)(H, T), (T,H)(T, H), and (T,T)(T, T), which you will recognize as the outcomes of two tosses of a coin. The product of this new space and Ω1\Omega_1 is the space representing three tosses. And so on.

The Python module itertools contains a function product that constructs product spaces. Let’s import it.

from itertools import product

To see how product works, we will start with the outcomes of one toss of a coin. We are creating an array using make_array but you could use any other way of creating an array or list.

one_toss = make_array('H', 'T')

To use product, we have to specify the base space and the number of repetitions, and then covert the result to a list.

two_tosses = list(product(one_toss, repeat=2))
two_tosses
[('H', 'H'), ('H', 'T'), ('T', 'H'), ('T', 'T')]

For three tosses, just change the number of repetitions:

three_tosses = list(product(one_toss, repeat=3))
three_tosses
[('H', 'H', 'H'), ('H', 'H', 'T'), ('H', 'T', 'H'), ('H', 'T', 'T'), ('T', 'H', 'H'), ('T', 'H', 'T'), ('T', 'T', 'H'), ('T', 'T', 'T')]

3.1.2Probability Space

A probability space is an outcome space accompanied by the probabilities of all the outcomes. If you assume all eight outcomes of three tosses are equally likely, the probabilities are all 1/8:

three_toss_probs = (1/8)*np.ones(8)

The corresponding probability space:

three_toss_space = Table().with_columns(
    'omega', three_tosses,
    'P(omega)', three_toss_probs
)
three_toss_space
Loading...

Product spaces get large very quickly. If you roll a die 5 times, there are almost 8,000 possible outcomes:

6**5
7776

But we have product so we can still list them all! Here is a probability space representing 5 rolls of a die.

die = np.arange(1, 7, 1)

five_rolls = list(product(die, repeat=5))  # All possible results of 5 rolls

five_rolls_probs = (1/6**5)**np.ones(6**5)  # Each result has chance 1/6**5

five_rolls_space = Table().with_columns(
   'omega', five_rolls,
    'P(omega)', five_rolls_probs
)

five_rolls_space
Loading...
🎥 See More
Loading...

3.1.3A Function on the Outcome Space

Suppose you roll a die five times and add up the number of spots you see. If that seems artificial, be patient for a moment and you’ll soon see why it’s interesting.

The sum of the rolls is a numerical function on the outcome space Ω\Omega of five rolls. The sum is thus a random variable. Let’s call it SS. Then, formally,

S:Ω{5,6,,30}S: \Omega \rightarrow \{ 5, 6, \ldots, 30 \}

The range of SS is the integers 5 through 30, because each die shows at least one spot and at most six spots. We can also use the equivalent notation

ΩS{5,6,,30}\Omega \stackrel{S}{\rightarrow} \{ 5, 6, \ldots, 30 \}

From a computational perspective, the elements of Ω\Omega are in the column omega of five_roll_space. Let’s apply this function and create a larger table.

five_rolls_sum = five_rolls_space.with_columns(
    'S(omega)', five_rolls_space.apply(sum, 'omega')
).move_to_end('P(omega)')

five_rolls_sum
Loading...

We now have every possible outcome of five rolls of a die, along with its total number of spots. You can see that the first row of the table shows the smallest possible number of spots, corresponding to all the rolls showing 1 spot. The 7776th row shows the largest:

five_rolls_sum.take(7775)
Loading...

All the other values of SS are between these two extremes.

Functions of Random Variables

A random variable is a numerical function on Ω\Omega. Therefore by composition, a numerical function of a random variable is also a random variable.

For example, S2S^2 is a random variable, calculated as follows:

S2(ω)=(S(ω))2S^2(\omega) = \big( S(\omega)\big)^2

Thus for example S2([6 6 6 6 6])=302=900S^2(\text{[6 6 6 6 6]}) = 30^2 = 900.

🎥 See More
Loading...

3.1.4Events Determined by SS

From the table five_rolls_sum it is hard to tell how many rows show a sum of 6, or 10, or any other value. To better understand the properties of SS, we have to organize the information in five_rolls_sum.

For any subset AA of the range of SS, define the event {SA}\{S \in A\} as

{SA}={ω:S(ω)A}\{S \in A \} = \{\omega: S(\omega) \in A \}

That is, {SA}\{ S \in A\} is the collection of all ω\omega for which S(ω)S(\omega) is in AA. In terms of the table, the set consists of the values of ω\omega in all the rows in which the sum is in AA.

Events of the form {SA}\{ S \in A\} are said to be determined by SS. If we know the value of SS, then we know whether or not that value is in AA. So we can determine whether or not the event {SA}\{ S \in A\} has occurred.

Let’s try out the definition in a special case. Take A={5,30}A = \{5, 30\}. Then {SA}\{S \in A\} if and only if either all the rolls show 1 spot or all the rolls show 6 spots. So

{SA}={[1 1 1 1 1], [6 6 6 6 6]}\{S \in A\} = \{\text{[1 1 1 1 1], [6 6 6 6 6]}\}

It is natural to ask about the chance the sum is a particular value, say 10. That’s not easy to read off the table, but we can access the corresponding rows:

five_rolls_sum.where('S(omega)', are.equal_to(10))
Loading...

There are 126 values of ω\omega for which S(ω)=10S(\omega) = 10. Since all the ω\omega are equally likely, the chance that SS has the value 10 is 126/7776.

We will usually be informal with notation and write {S=10}\{ S = 10 \} instead of {S{10}}\{ S \in \{10\} \}:

P(S=10)=1267776=1.62%P(S = 10) = \frac{126}{7776} = 1.62\%