“If a coin is tossed, what is the chance that it lands heads?” Ask this question and the most common answer that you will get is . If you press for a reason, don’t be surprised to hear, “Because the coin has two faces.” A coin does indeed have two faces, but notice an assumption hidden inside the “reasoning” you have been given: that each of the two faces has the same chance as the other.
The assumption of equally likely outcomes is a simple and ancient model of randomness. It defines probabilities as proportions. The assumption that is finite makes proportions easy to identify as fractions of the total number of outcomes.
For some , let consist of outcomes. Let be an event. Define to be the number of outcomes in the subset . Thus , , and for any other event .
For an event , let denote the probability that occurs, or the chance that occurs. We will use the words “probability” and “chance” synonymously, and we will often use “happens” instead of the more formal “occurs”.
1.2.1Probabilities on a Space of Equally Likely Outcomes¶
If all outcomes in are assumed to be equally likely, then the probability that the event occurs is defined by
This idea that probabilities are proportions lies at the heart of many calculations. As you will see later, rules for combining proportions become rules for combining probabilities, whether or not all outcomes are equally likely. But for now we will work in settings where it is natural to assume that outcomes are equally likely.
1.2.2Example 1: Random Permutations¶
Let be the space of all permutations of the letters , , and . Then contains outcomes:
If we assume that all six permutations are equally likely, we have what are called random permutations of the three letters. Under this assumption, we can augment our table of events with a column of chances.
| Event | Verbal Description | Subset | Probability |
|---|---|---|---|
| appears first | |||
| and are not next to each other | |||
| the letters are in alphabetical order | |||
| appears first, next, but isn’t third | 0 | ||
| is either first, second, or third | 1 | ||
| the letters form a word that means “taxi” |
Notice that
Thus the assumption that all the permutations are equally likely makes all three positions of equally likely as well. The same is true of the positions of and , as you should check.
Answer
1.2.3Example 2: Random Number Generator¶
Suppose a random number generator returns a pair of digits from among the 100 pairs 00, 01, 02, , 98, 99, in a way that makes all the pairs equally likely to be returned.
You will have noticed that the pairs correspond to the 100 integers 0 through 99. In what follows, it will be useful to remind yourself of the product rule of counting:
There are 10 choices for the first digit: 0, 1, 2, 3, 4, 5, 6, 7, 8, and 9.
Corresponding to each choice of the first digit there are 10 choices for the second digit.
So in total there are pairs of digits.
Here a “pair” is an sequence of two digits, one following the other. The pair 27 is different from the pair 72. These are sometimes called “ordered pairs”. In this text, all sequences are ordered.
Now let’s compute the probabilities of a few events. By assumption, all pairs are equally likely. So each answer will consist of counting the number of pairs in the event, and then dividing by the total number of pairs, which is 100.
(i) What is the probability that the pair consists of two different digits?
We have to count the number of pairs where . The digit can be chosen in 10 ways; for each of those ways, there are only 9 ways of choosing because has to be different from . So the answer is
(ii) What is the chance that the two digits are the same?
Let’s try to use our answer to (i). In every one of the 100 pairs, either the two digits are the same or they are different. No pair can be in both categories, so by rules of proportion we have
To check this by counting, you have to count pairs of the form . There are 10 ways to choose , and there are no further choices to make. So the answer is , confiriming our calculation above.