Login
📚 Statistics with Technology 2e
Chapters ▾
⇩ Download ▾

5.2 Binomial Probability Distribution

Section 5.1 introduced the concept of a probability distribution. The focus of the section was on discrete probability distributions (pdf). To find the pdf for a situation, you usually needed to actually conduct the experiment and collect data. Then you can calculate the experimental probabilities. Normally you cannot calculate the theoretical probabilities instead. However, there are certain types of experiment that allow you to calculate the theoretical probability. One of those types is called a Binomial Experiment.

Properties of a binomial experiment (or Bernoulli trial)

  1. Fixed number of trials, n, which means that the experiment is repeated a specific number of times.
  2. The n trials are independent, which means that what happens on one trial does not influence the outcomes of other trials.
  3. There are only two outcomes, which are called a success and a failure.
  4. The probability of a success doesn’t change from trial to trial, where p = probability of success and q = probability of failure, q = 1-p.

If you know you have a binomial experiment, then you can calculate binomial probabilities. This is important because binomial probabilities come up often in real life. Examples of binomial experiments are:

To develop the process for calculating the probabilities in a binomial experiment, consider Example 1.

First, the random variable in a binomial experiment is x = number of successes. Be careful, a success is not always a good thing. Sometimes a success is something that is bad, like finding a defect. A success just means you observed the outcome you wanted to see happen.

The nCr is the number of combinations of n things taking r at a time. It is read “n choose r”. Some other common notations for n choose r are Cn,r, and nr. n! means you are multiplying n*(n1)*(n2)**2*1. As an example, 5!=5*4*3*2*1=120.

When solving problems, make sure you define your random variable and state what n, p, q, and r are. Without doing this, the problems are a great deal harder.

The binomial formula is cumbersome to use, so you can find the probabilities by using technology. On the TI-83/84 calculator, the commands on the TI-83/84 calculators when the number of trials is equal to n and the probability of a success is equal to p are binompdf(n,p,r) when you want to find P(x=r) and binomcdf(n,p,r) when you want to find P(xr). If you want to find P(xr), then you use the property that P(xr)=1P(xr1), since xr and x<r or xr1 are complementary events. Both binompdf and binomcdf commands are found in the DISTR menu. Using R, the commands are P(x=r)= dbinom (r,n,p) and P(xr)= pbinom (r,n,p).

There are other technologies that will compute binomial probabilities.

Homework