\(\newcommand{\P}{\mathbb{P}}\) \(\newcommand{\E}{\mathbb{E}}\) \(\newcommand{\R}{\mathbb{R}}\) \(\newcommand{\N}{\mathbb{N}}\) \(\newcommand{\bs}{\boldsymbol}\) \(\newcommand{\var}{\text{var}}\) \(\newcommand{\jack}{\text{j}}\) \(\newcommand{\queen}{\text{q}}\) \(\newcommand{\king}{\text{k}}\)
  1. Random
  2. 11. Finite Sampling Models
  3. 1
  4. 2
  5. 3
  6. 4
  7. 5
  8. 6
  9. 7
  10. 8
  11. 9

1. Introduction

Basic Theory

Sampling Models

Suppose that we have a population \(D\) of \(m\) objects. The population could be a deck of cards, a set of people, an urn full of balls, or any number of other collections. In many cases, we simply label the objects from 1 to \(m\), so that \(D = \{1, 2, \ldots, m\}\). In other cases (such as the card experiment), it may be more natural to label the objects with vectors. In any case, \(D\) is usually a finite subset of \(\R^k\) for some \(k \in \N_+\).

The basic experiment consists of selecting \(n\) objects from the population \(D\) at random and recording the sequence of objects chosen. Thus, the outcome is \(\bs{X} = (X_1, X_2, \ldots, X_n)\) where \(X_i \in D\) is the \(i\)th object chosen.

  1. If the sampling is with replacement, the sample size \(n\) can be any positive integer. In this case, the sample set is \( S = D^n = \left\{(x_1, x_2, \ldots, x_n): x_i \in D \text{ for each } i \right\} \).
  2. If the sampling is without replacement, the sample size \(n\) can be no larger than the population size \(m\). In this case, the sample set \(S\) consists of all permutations of size \(n\) chosen from \(D\): \( S = D_n = \left\{(x_1, x_2, \ldots, x_n): x_i \in D \text{ for each } i \text{ and } x_i \ne x_j \text{ for all } i \ne j\right\} \).

From the multiplication rule of combinatorics,

  1. \(\#(D^n) = m^n\)
  2. \(\#(D_n) = m^{(n)} = m (m - 1) \cdots (m - n + 1)\)

With either type of sampling, we assume that the samples are equally likely and thus that the outcome variable \(\bs{X}\) is uniformly distributed on the appropriate sample space \(S\); this is the meaning of the phrase random sample: \[ \P(\bs{X} \in A) = \frac{\#(A)}{\#(S)}, \quad A \subseteq S \]

The Exchangeable Property

Suppose again that we select \(n\) objects at random from the population \(D\), either with or without replacement and record the ordered sample \(\bs{X} = (X_1, X_2, \ldots, X_n)\)

Any permutation of \(\bs{X}\) has the same distribution as \(\bs{X}\) itself, namely the uniform distribution on the appropriate sample set \(S\):

  1. \(D^n\) if the sampling is with replacement.
  2. \(D_n\) if the sampling is without replacement.

A sequence of random variables with this property is said to be exchangeable. Although this property is very simple to understand, both intuitively and mathematically, it is nonetheless very important. We will use the exchangeable property often in this chapter.

More generally, any sequence of \(k\) of the \(n\) outcome variables is uniformly distributed on the appropriate sample set:

  1. \(D^k\) if the sampling is with replacement.
  2. \(D_k\) if the sampling is without replacement.

In particular, for either sampling method, \(X_i\) is uniformly distributed on \(D\) for each \(i \in \{1, 2, \ldots, n\}\).

If the sampling is with replacement then \(\bs{X} = (X_1, X_2, \ldots, X_n)\) is a sequence of independent random variables.

Thus, when the sampling is with replacement, the sample variables form a random sample from the uniform distribution, in statistical terminology.

If the sampling is without replacement, then the conditional distribution of a sequence of \(k\) of the outcome variables, given the values of a sequence of \(j\) other outcome variables, is the uniform distribution on the set of permutations of size \(k\) chosen from the population when the \(j\) known values are removed (of course, \(j + k \le n\)).

In particular, \(X_i\) and \(X_j\) are dependent for any distinct \(i\) and \(j\) when the sampling is without replacement.

The Unordered Sample

In many cases when the sampling is without replacement, the order in which the objects are chosen is not important; all that matters is the (unordered) set of objects: \[ \bs{W} = \{X_1, X_2, \ldots, X_n\} \] The random set \(\bs{W}\) takes values in the set of combinations of size \(n\) chosen from \(D\): \[ T = \left\{ \{x_1, x_2, \ldots, x_n\}: x_i \in D \text{ for each } i \text{ and } x_i \ne x_j \text{ for all } i \ne j \right\} \]

Recall that \(\#(T) = \binom{m}{n}\).

\(\bs{W}\) is uniformly distributed over \(T\): \[ \P(\bs{W} \in B) = \frac{\#(B)}{\#(T)} = \frac{\#(B)}{\binom{m}{n}}, \quad B \subseteq T \]

Details:

For any combination of size \(n\) from \(D\), there are \(n!\) permutations of size \(n\).

Suppose now that the sampling is with replacement, and we again denote the unordered outcome by \(\bs{W}\). In this case, \(\bs{W}\) takes values in the collection of multisets of size \(n\) from \(D\). (A multiset is like an ordinary set, except that repeated elements are allowed). \[ T = \left\{ \{x_1, x_2, \ldots, x_n\}: x_i \in D \text{ for each } i \right\} \]

Recall that \(\#(T) = \binom{m + n - 1}{n}\).

\(\bs{W}\) is not uniformly distributed on \(T\).

Summary of Sampling Formulas

The following table summarizes the formulas for the number of samples of size \(n\) chosen from a population of \(m\) elements, based on the criteria of order and replacement.

Sampling Formulas
Replacement | Order With Without
With \(m^n\) \(\binom{m + n - 1}{n}\)
Without \(m^{(n)}\) \(\binom{m}{n}\)

Examples and Applications

Suppose that a sample of size 2 is chosen from the population \(\{1, 2, 3, 4\}\). Explicitly list all samples in the following cases:

  1. Ordered samples, with replacement.
  2. Ordered samples, without replacement.
  3. Unordered samples, with replacement.
  4. Unordered samples, without replacement.
Details:
  1. \(\{(1,1), (1,2), (1,3), (1,4), (2,1), (2,2), (2,3), (2,4), (3,1), (3,2), (3,3), (3,4), (4,1), (4,2), (4,3), (4,4)\}\)
  2. \(\{(1,2), (1,3), (1,4), (2,1), (2,3), (2,4), (3,1), (3,2), (3,4), (4,1), (4,2), (4,3)\}\)
  3. \(\{\{1,1\}, \{1,2\}, \{1,3\}, \{1,4\}, \{2,2\}, \{2,3\}, \{2,4\}, \{3,3\}, \{3,4\}, \{4,4\}\}\)
  4. \(\{\{1,2\}, \{1,3\}, \{1,4\}, \{2,3\}, \{2,4\}, \{3,4\}\}\)

Multi-type Populations

A dichotomous population consists of two types of objects.

Suppose that a batch of 100 components includes 10 that are defective. A random sample of 5 components is selected without replacement. Compute the probability that the sample contains at least one defective component.

Details:

0.4162

An urn contains 50 balls, 30 red and 20 green. A sample of 15 balls is chosen at random. Find the probability that the sample contains 10 red balls in each of the following cases:

  1. The sampling is without replacement
  2. The sampling is with replacement
Details:
  1. 0.2070
  2. 0.1859

In the ball and urn experiment select 50 balls with 30 red balls, and sample size 15. Run the experiment 100 times. Compute the relative frequency of the event that the sample has 10 red balls in each of the following cases, and compare with the respective probability in the previous exercise:

  1. The sampling is without replacement
  2. The sampling is with replacement

Suppose that a club has 100 members, 40 men and 60 women. A committee of 10 members is selected at random (and without replacement, of course).

  1. Find the probability that both genders are represented on the committee.
  2. If you observed the experiment and in fact the committee members are all of the same gender, would you believe that the sampling was random?
Details:
  1. 0.9956
  2. No

Suppose that a small pond contains 500 fish, 50 of them tagged. A fisherman catches 10 fish. Find the probability that the catch contains at least 2 tagged fish.

Details:

0.2635

The basic distribution that arises from sampling without replacement from a dichotomous population is studied in the section on the hypergeometric distribution. More generally, a multi-type population consists of objects of \(k\) different types.

Suppose that a legislative body consists of 60 republicans, 40 democrats, and 20 independents. A committee of 10 members is chosen at random. Find the probability that at least one party is not represented on the committee.

Details:

0.1633. Use the inclusion-exclusion law.

The basic distribution that arises from sampling without replacement from a multi-type population is studied in the section on the multivariate hypergeometric distribution.

Cards

Recall that a standard card deck can be modeled by the product set \[ D = \{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, \jack, \queen, \king\} \times \{\clubsuit, \diamondsuit, \heartsuit, \spadesuit\} \] where the first coordinate encodes the denomination or kind (ace, 2-10, jack, queen, king) and where the second coordinate encodes the suit (clubs, diamonds, hearts, spades). The general card experiment consists of drawing \(n\) cards at random and without replacement from the deck \(D\). Thus, the \(i\)th card is \(X_i = (Y_i, Z_i)\) where \(Y_i\) is the denomination and \(Z_i\) is the suit. The special case \(n = 5\) is the poker experiment and the special case \(n = 13\) is the bridge experiment. Note that with respect to the denominations or with respect to the suits, a deck of cards is a multi-type population as discussed above.

In the card experiment with \(n = 5\) cards (poker), there are

  1. 311,875,200 ordered hands
  2. 2,598,960 unordered hands

In the card experiment with \(n = 13\) cards (bridge), there are

  1. 3,954,242,643,911,239,680,000 ordered hands
  2. 635,013,559,600 unordered hands

In the card experiment, set \(n = 5\). Run the simulation 5 times and on each run, list all of the (ordered) sequences of cards that would give the same unordered hand as the one you observed.

In the card experiment,

  1. \(Y_i\) is uniformly distributed on \(\{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, \jack, \queen, \king\}\) for each \(i\).
  2. \(Z_j\) is uniformly distributed on \(\{\clubsuit, \diamondsuit, \heartsuit, \spadesuit\}\) for each \(i\).

In the card experiment, \(Y_i\) and \(Z_j\) are independent for any \(i\) and \(j\).

In the card experiment, \((Y_1, Y_2)\) and \((Z_1, Z_2)\) are dependent.

Suppose that a sequence of 5 cards is dealt. Find each of the following:

  1. The probability that the third card is a spade.
  2. The probability that the second and fourth cards are queens.
  3. The conditional probability that the second card is a heart given that the fifth card is a heart.
  4. The probability that the third card is a queen and the fourth card is a heart.
Details:
  1. \(\frac{1}{4}\)
  2. \(\frac{1}{221}\)
  3. \(\frac{4}{17}\)
  4. \(\frac{1}{52}\)

Run the card experiment 500 time. Compute the relative frequency corresponding to each probability in the previous exercise.

Find the probability that a bridge hand will contain no cards of denomination 10, jack, queen, king, or ace. Such a hand is called a Yarborough, in honor of the second Earl of Yarborough.

Details:

0.000547

Dice

Rolling \(n\) fair, six-sided dice is equivalent to choosing a random sample of size \(n\) with replacement from the population \(\{1, 2, 3, 4, 5, 6\}\). Generally, selecting a random sample of size \(n\) with replacement from \(D = \{1, 2, \ldots, m\}\) is equivalent to rolling \(n\) fair, \(m\)-sided dice.

In the game of poker dice, 5 standard, fair dice are thrown. Find each of the following:

  1. The probability that all dice show the same score.
  2. The probability that the scores are distinct.
  3. The probability that 1 occurs twice and 6 occurs 3 times.
Details:
  1. \(\frac{1}{1296}\)
  2. \(\frac{5}{24}\)
  3. \(\frac{5}{3888}\)

Run the poker dice experiment 500 times. Compute the relative frequency of each event in the previous exercise and compare with the corresponding probability.

The game of poker dice is treated in more detail in the chapter on games of chance.

Birthdays

Supposes that we select \(n\) persons at random and record their birthdays. If we assume that birthdays are uniformly distributed throughout the year, and if we ignore leap years, then this experiment is equivalent to selecting a sample of size \(n\) with replacement from \(D = \{1, 2, \ldots, 365\}\). Similarly, we could record birth months or birth weeks.

Suppose that a probability class has 30 students. Find each of the following:

  1. The probability that the birthdays are distinct.
  2. The probability that there is at least one duplicate birthday.
Details:
  1. 0.2937
  2. 0.7063

In the birthday experiment, set \(m = 365\) and \(n = 30\). Run the experiment 1000 times and compare the relative frequency of each event in the previous exercise to the corresponding probability.

The birthday problem is treated in more detail later in this chapter.

Balls into Cells

Suppose that we distribute \(n\) distinct balls into \(m\) distinct cells at random. This experiment also fits the basic model, where \(D\) is the population of cells and \(X_i\) is the cell containing the \(i\)th ball. Sampling with replacement means that a cell may contain more than one ball; sampling without replacement means that a cell may contain at most one ball.

Suppose that 5 balls are distributed into 10 cells (with no restrictions). Find each of the following:

  1. The probability that the balls are all in different cells.
  2. The probability that the balls are all in the same cell.
Details:
  1. \(\frac{189}{625}\)
  2. \(\frac{1}{10000}\)

Coupons

Suppose that when we purchase a certain product (bubble gum, or cereal for example), we receive a coupon (a baseball card or small toy, for example), which is equally likely to be any one of \(m\) types. We can think of this experiment as sampling with replacement from the population of coupon types; \(X_i\) is the coupon that we receive on the \(i\)th purchase.

Suppose that a kid's meal at a fast food restaurant comes with a toy. The toy is equally likely to be any of 5 types. Suppose that a mom buys a kid's meal for each of her 3 kids. Find each of the following:

  1. The probability that the toys are all the same.
  2. The probability that the toys are all different.
Details:
  1. \(\frac{1}{25}\)
  2. \(\frac{12}{25}\)

The coupon collector problem is studied in more detail later in this chapter.

The Key Problem

Suppose that a person has \(n\) keys, only one of which opens a certain door. The person tries the keys at random. We will let \(N\) denote the trial number when the person finds the correct key.

Suppose that unsuccessful keys are discarded (the rational thing to do, of course). Then \(N\) has the uniform distribution on \(\{1, 2, \ldots, n\}\).

  1. \(\P(N = i) = \frac{1}{n}, \quad i \in \{1, 2, \ldots, n\}\).
  2. \(\E(N) = \frac{n + 1}{2}\).
  3. \(\var(N) = \frac{n^2 - 1}{12}\).

Suppose that unsuccessful keys are not discarded (perhaps the person has had a bit too much to drink). Then \(N\) has a geometric distribution on \(\N_+\).

  1. \(\P(N = i) = \frac{1}{n} \left( \frac{n-1}{n} \right)^{i-1}, \quad i \in \N_+\).
  2. \(\E(N) = n\).
  3. \(\var(N) = n (n - 1)\).

Simulating a Random Samples

It's very easy to simulate a random sample of size \(n\), with replacement from \(D = \{1, 2, \ldots, m\}\). Recall that the ceiling function \(\lceil x \rceil\) gives the smallest integer that is at least as large as \(x\).

Let \(\bs{U} = (U_1, U_2, \ldots, U_n)\) be a sequence of be a random numbers. Recall that these are independent random variables, each uniformly distributed on the interval \([0, 1]\) (the standard uniform distribution). Then \(X_i = \lceil m \, U_i \rceil\) for \(i \in \{1, 2, \ldots, n\}\) simulates a random sample, with replacement, from \(D\).

It's a bit harder to simulate a random sample of size \(n\), without replacement, since we need to remove each sample value before the next draw.

The following algorithm generates a random sample of size \(n\), without replacement, from \(D\).

  1. For \(i = 1\) to \(m\), let \(b_i = i\).
  2. For \(i = 1\) to \(n\),
    1. let \(j = m - i + 1\)
    2. let \(U_i\) be a random number
    3. let \(J = \lfloor j U_i \rfloor\)
    4. let \(X_i = b_J\)
    5. let \(k = b_j\)
    6. let \(b_j = b_J\)
    7. let \(b_J = k\)
  3. Return \(\bs{X} = (X_1, X_2, \ldots, X_n)\)