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
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 and is the set of all pairs where and . 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 . The product of with itself is the set of pairs , , , and , which you will recognize as the outcomes of two tosses of a coin. The product of this new space and 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 productTo 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_spaceProduct spaces get large very quickly. If you roll a die 5 times, there are almost 8,000 possible outcomes:
6**57776But 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🎥 See More
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 of five rolls. The sum is thus a random variable. Let’s call it . Then, formally,
The range of 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
From a computational perspective, the elements of 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_sumWe 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)All the other values of are between these two extremes.
Answer
(i) Yes.
(ii) No. The description gets stuck at the outcome . It doesn’t say what to do in this case. Even if you decide to use for this outcome, you don’t get a random variable because isn’t a real number.
Functions of Random Variables
A random variable is a numerical function on . Therefore by composition, a numerical function of a random variable is also a random variable.
For example, is a random variable, calculated as follows:
Thus for example .
Answer
(a) Yes (b) Yes
🎥 See More
3.1.4Events Determined by ¶
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 , we have to organize the information in five_rolls_sum.
For any subset of the range of , define the event as
That is, is the collection of all for which is in . In terms of the table, the set consists of the values of in all the rows in which the sum is in .
Events of the form are said to be determined by . If we know the value of , then we know whether or not that value is in . So we can determine whether or not the event has occurred.
Let’s try out the definition in a special case. Take . Then if and only if either all the rolls show 1 spot or all the rolls show 6 spots. So
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))There are 126 values of for which . Since all the are equally likely, the chance that has the value 10 is 126/7776.
We will usually be informal with notation and write instead of :
Answer
(a) , probability
(b) , probability