Introduction to Probability Models

Lecture 21

Qi Wang, Department of Statistics

Oct 12, 2018

Discrete Random Variables

  • Bernoulli
  • Binomial
  • Hypergeometric
  • Poisson
  • Geometric
  • Negative Binomial

Bernoulli Distribution

  • $X \sim Bern(p)$
  • The definition of $X$: the success of some event on a single trial.
  • Support: $\{0, 1\}$
  • Parameter: p
  • PMF: $P_X(x) = p^x (1-p)^{1-x}$
  • Expected Value: $E[X] = p$
  • Variance: $Var(X) = p(1-p)$

Binomial Distribution

  • $X\sim Binomial(n, p)$
  • The definition of $X$: the total number of successes in a sequence of n independent Bernoulli experiments, with a success rate p
  • Support: $\{0, 1, 2, \cdots, n\}$
  • Parameter: n, p
  • PMF: $P_X(x) = C_x^n p^x (1-p)^{n-x}$
  • Expected Value: $E[X] = np$
  • Variance: $Var(X) = np(1-p)$

Hypergeometric Distribution

  • $X \sim Hyper(N, n, M)$
  • The definition of $X$: the number of success in $n$ trail without replacement from a finite population of size N that contains exactly M objects with that feature.
  • Support: $\{0, 1, 2, \cdots, n\}$ or $\{0, 1, 2, \cdots, M\}$
  • Parameters:
    • $N:$ Population size
    • $M:$ Number of possible successes
    • $n:$ Number of trials
  • PMF: $P_X(x) = \frac{C_x^M C_{n-x}^{N - M}}{C_n^N}$
  • Expected Value: $E[X] = n \frac{M}{N}$
  • Variance: $Var(X) = n \frac{M}{N} (1 - \frac{M}{N}) \frac{N-n}{N-1}$

Poisson Distribution

  • $X \sim Poisson(\lambda)$
  • The definition of $X$: the number of success per $\underline{\hspace{1cm}}$, and $\underline{\hspace{1cm}}$ can be time, length, space unit and so on
  • Support: $\{0, 1, 2, \cdots\}$
  • Parameters: $\lambda$, the average success rate per $\underline{\hspace{1cm}}$
  • PMF: $P_X(x) = \frac{e^{-\lambda} \lambda^x}{x!}$
  • Expected Value: $E[X] = \lambda$
  • Variance: $Var(X) = \lambda$

Geometric Distribution

  • $X \sim Geom(p)$
  • The definition of $X$ : the number of trials to get the first success
  • Support: $\{1, 2, \cdots\}$, NOTE: NO ZERO!
  • Parameter: $p$, the probability of success in one trial
  • PMF: $P_X(x) = p(1-p)^{x - 1}$
  • Expected Value: $E[X] = \frac{1}{p}$
  • Variance: $Var(X) = \frac{1 - p}{p^2}$

Negative Binomial Distribution

  • $X \sim NegBin(r, p)$ or $X \sim NB(r, p)$
  • The definition of $X$ : the number of trials to get the $r_{th}$ success
  • Support: $\{r, r + 1, r + 2, \cdots\}$
  • Parameter:
    • $p$: the probability of success in one trial
    • $r$: success of interest
  • PMF: $P_X(x) = C_{r-1}^{x-1}p^r(1-p)^{x - r}$
  • Expected Value: $E[X] = \frac{r}{p}$
  • Variance: $Var(X) = \frac{r(1 - p)}{p^2}$

Example 1

In a jar there are 200,000,000 coins, 5,000,000 of which are quarters. You select 50 coins from the jar randomly and without replacement. Let X be the number of quarters in your sample.

  1. What is the distribution of X?
  2. Find the probability that X is 2
  3. Is there an approximate distribution for X, why or why not? If there is, call the approximation $X^\star$ and find $P(X^\star = 2)$ as well

Example 2

The wonderful candy shop, Albanese Candy Outlet, makes chocolate chip cookies as part of their production line. Chocolate chips in the cookies are randomly and independently distributed with an average of 12 chocolate chips per cookie. You and 9 of your friends decide to make a trip to Albanese Candy Outlet. Each of you buys one chocolate chip cookie.

  1. What is the probability that your cookie contains between 10 and 15 chocolate chips inclusive?
  2. What is the probability that 5 or 6 people in your group have cookies with between 10 and 15 chocolate chips inclusive?
  3. While examining your cookies (one-by-one), what is the probability that it takes at least 4 cookies to find the first one with between 10 and 15 chocolate chips inclusive?
  4. While examining your cookies (one-by-one), what is the probability that it takes at least 4 cookies to find the first one with 12 or 13 chocolate chips?
  5. Suppose you and your 9 friends were to go repeatedly to Albanese Candy Outlet. What is the probability that it takes until your sixth trip so that 5 or 6 people in your group have 12 or 13 chocolate chips in their cookie?

Example 3

Name the distribution, parameter(s) and support

  • X is the number of 5's in ten rolls of a fair die.
  • A baseball starting lineup consists of nine players, three of which are outfielders. A random sample of three players is taken from a baseball starting lineup. Let X be the number of outfielders in the sample.
  • X is the number of Hearts in a five-card poker hand dealt from a standard 52 card deck.
  • Let us repeatedly deal out five-card poker hands (replacing the cards after each hand is dealt). Let X be the deal number of the first time in which we get a flush
  • Let us repeatedly deal out five-card poker hands (replacing the cards after each hand is dealt). Let X be tahe deal number of the eighth time in which we get a a straight(allow the A-5 straight).
  • A player wins a game if he/she rolls at least one 6 in four rolls of a fair die. Let X be the outcome (win or lose) of this game.