Hi everyone! Read through the material below, watch the videos, work on the laboratories and follow up with your instructor if you have questions.

Galton Box demonstrates the normal distribution
Galton Board

Header text

Header text

Topic: Binomial Distribution

The binomial distribution describes the probability of having exactly $k$ successes in $n$ independent trials with a probability of a success $p$. For instance, we could flip a “fair” coin 10 times and determine the chance of getting 5 heads. In this case, $k=5$, $n=10$ $p=0.5$.

WeBWorK. Set 4.3

Learning Outcomes

  1. Determine if a random variable $X$ is binomial using the four conditions:
    • The trials are independent.
    • The number of trials, $n$, is fixed.
    • Each trial outcome can be classified as a success or failure.
    • The probability of a success, $p$, is the same for each trial.
  2. Calculate the number of possible scenarios for obtaining $k$ successes in $n$ trials using the choose function: ${n \choose k} = \frac{n!}{k!~(n – k)!}$.
  3. Calculate probability of a given number of successes in a given number of trials using the binomial distribution: $P(X = k) = \frac{n!}{k!~(n – k)!}~p^k~(1-p)^{(n – k)}$.
  4. Calculate the expected number of successes in a given number of binomial trials $(\mu = np)$ and its standard deviation $(\sigma = \sqrt{np(1-p)})$.

Common Resources

Videos

The Galton Board Demonstrated and Explained
Binomial Distribution
Binomial Distribution – Finding Probabilities

Example

Suppose the chance of getting a head by flipping a bent coin is $0.70$. What is the probability of getting one head in four trials?

Answer

We can have the head occur in any of the 4 trials: httt, thtt, ttht, ttth. This corresponds to the binomial coefficient $4 \choose 1$. Using the multiplication principle the chance of any of these 4 outcomes is $0.7\cdot 0.3^3$, thus the chance of 1 head is: $${4 \choose 1}\cdot0.7\cdot 0.3^3$$

The general theory

Header text

Header text

Header text

Header text

In general, if the probability of a success for a single trial is $p$, then the chance of observing exactly $k$ successes in $n$ independent trials is given by

$$ P(X = k) = {n \choose k}~p^k~(1-p)^{(n – k)} =\frac{n!}{k!~(n – k)!}~p^k~(1-p)^{(n – k)}$$.

Four Conditions to check for binomial:

  1. The trials are independent.
  2. The number of trials, $n$, is fixed.
  3. Each trial outcome can be classified as a success or failure.
  4. The probability of a success $p$, is the same for each trial.

Header text

Header text

Taking it one step further

Normal Approximation of the Binomial Distribution

Let $N(\mu,\sigma)$ be the standard notation to indicate a normal distribution with mean $\mu$ and standard deviation $\sigma$.

Rule of thumb: the binomial distribution with probability of success $p$ may be approximated by the normal distribution if the sample size $n$ is sufficiently large so that $np$ and $n(1-p)$ are both at least 10.

More specifically, using the parameters

  • mean: $\mu = np$
  • standard deviation: $\sigma = \sqrt{np(1-p)}$

then the following approximations hold:

  • $P(X\leq k)\approx P(N(\mu,\sigma)\leq k+0.5);$
  • $P(X\geq k)\approx P(N(\mu,\sigma)\geq k-0.5).$

The 0.5 is known as a continuity correction .

Showing for $n=20$ and $p=0.25$, $P(X\geq 8)\approx P(N(5,3.75)\geq 7.5)$, source.

Example: if $n=100$ and $p=0.2$, then $np=20$ and $n(1-p)=80$ are both greater than 10, $\mu = np=20$, $\sigma = \sqrt{np(1-p)}= \sqrt{20(0.8)=4}$ and
$$0.1285=P(X\leq 15)\approx P(N(20,4)\leq 15.5)=0.1303.$$

As you can see, the approximation may be very rough, even if the “rule of thumb” conditions are met.

Galton Board with different sized balls

Demonstration of need for independence with some comments below
  • Thyago: Doesn’t the fact that some balls are hitting each other interfere with the independence assumption? I mean, the probability of going right or left is biased by the interactions between the balls.
  • Chris Beck: Lack of independence seems to be causing the drift from the normal distribution. The large balls are processed relatively independently as only 1 can fit through each condition at a time.
  • David Bulger: Watching the small balls fall, you can see that they tend to gather momentum and run in diagonal paths to the left or right—that is, they don’t change direction much. This illustrates the importance of the independence assumption in the central limit theorem: if the individual random variables are not independent, then their sum may not tend to a normal distribution.

Why do YOU think the results are so different depending on the size of the balls?

Excel-based Course Resources

  • The proprietary texts:
    • Introductory Statistics by Sheldon Ross, 3rd edition: Section 5.5
    • Statistics with Microsoft Excel by Beverly J. Dretzke, 5th ed., BINOMDIST(s,n,p,false) P. 104 – 108
  • Slides
  • Classwork
  • Excel Lecture

Videos

Creating a Binomial Distribution Probabilities in Excel

R-based Course Resources

  • Slides
  • Classwork
  • R-laboratory

Videos

Binomial Distribution in R

The Applied View

Watch the video binomial distributions.

  1. In a random phenomenon with only two possible outcomes, traditionally what terms are used to label the two outcomes?
  2. Give some reasons why the probability of success, p, for free throws is the same for each trial.
  3. What is the probability of inheriting sickle cell disease for a child with two parents who are carriers? Why is this probability the same for each child in the family?
  4. What is the formula for calculating the mean of a binomial random variable?
  5. List the four conditions needed for a binomial distribution.

Exit Ticket

  • A survey indicates that 41% of women in the U.S. consider reading their favorite leisure-time activity. You randomly select four U.S. women and ask them if reading is their favorite leisure-time activity. Find the chance that at least two of them will respond yes.
  • About 32% of students participate in a community volunteer program outside of school. If 30 students are selected at random, find the chance that at most 14 of them participate in a community volunteer program outside of school.
  • True/ False: If a family has 3 kids, born one at a time, there are 8 possible triples of gender ordered by age (exclude the possibility of nonbinary).
  • Challenge: How can we use the binomial distribution to determine the probability that in 10 rolls of a die, the first 6 occurs on the 8th roll?
    • Hint: It can be done using 2 binomial probabilities and the multiplication rule. Designate getting a 6 as “success”. In those first 7 rolls, how many successes will there be? Now work in what happens on the 8th roll.
  • Double Challenge: The type of analysis in the challenge can be applied to sports events such as the world series. If the series ends when one team has won a fourth time and the 2 teams are evenly matched, what is the chance that the series goes to exactly 4, 5, 6 and 7 games?
  • When n = 100 and p = 0.92, can we use the normal approximation to the binomial to calculate the probability of 90 or more successes?
    • Hint: Are $np$ and $n(1-p)$ both at least 10? (see step further in common resources)