2.5 Applications of Binomial distribution

  • You can model many complex business problems by using probability distributions. These distributions provide answers to questions such as: “What is the likelihood that oil prices will rise during the coming year?”, “What is the probability of a stock market crash next month?”, or “How likely is it that a corporation’s earnings will fall below expectations this year?”

  • To answer aforementioned questions an appropriate distribution for a given problem should be considered

  • Some of the more widely used probability distributions in business are the Binomial and Poisson distribution of discrete random variable (only a countable number of values are possible)

  • The Binomial distribution computes the probabilities of events where only two possible outcomes can occur (success or failure), e.g. when you look at the closing price of a stock each day for one year, the outcome of interest is whether the stock price increased or not.

  • Probability that a specified number of successes will occur during a fixed number of trials is calculated by Binomial formula:

P(X=xi)=n!xi!(nxi)!pxi(1p)nxixi=the number of successes (xi: 0, 1, 2,...,n)n=the number of trialsp=the probability of success on a single trial(1p)=the probability of failure on a single trailn!xi!(nxi)!=the number of combinations without replacement

  • If a random variable X follows a Binomial distribution we use notation

XB(n, p)

  • The expected value of the Binomial distribution is

E(X)=np

  • The variance of the Binomial distribution is

Var(X)=np(1p)

  • To compute Binomial probabilities in Excel you can use function =BINOM.DIST(x;n;p;FALSE) with setting the cumulative distribution function to FALSE (last argument of the function)

Example 2.6 Suppose you play a game that you can only either win or lose. The probability that you win any game is 55%, and the probability that you lose is 45%

  1. What is the probability that you win 15 times if you play the game 20 times?

P(X=15)=_______

  1. What is the probability that you lose all 20 games?

P(X=0)=_______

  1. What is the probability that you win all 20 games?
P(X=20)=_______