Chapter Review: Appendix 11.1 Common Probability Distributions For Simulation
Chapter Review: Appendix 11.1 Common Probability Distributions For Simulation
Chapter Review
Appendix 11.1 Common Probability Distributions for Simulation
Random variables that can be many possible values (even if the values are discrete) are
often modeled with a continuous probability distribution. For common continuous random
variables, we provide several pieces of information. First, we list the parameters which
specify the probability distribution. We then delineate the minimum and maximum values
defining the range that can be realized by a random variable that follows the given
distribution. We also provide a short description of the overall shape of the distribution
paired with an illustration. Then, we supply an example of the application of the random
variable. We conclude with the native Excel functionality for generating random values from
the probability distribution.
Normal Distribution
Range:
Beta Distribution
Range: A to B
Description: Over the range specified by values A and B, the beta distribution has a very
flexible shape that can be manipulated by adjusting and . The beta distribution is
useful in modeling an uncertain quantity that has a known minimum and maximum
value. To estimate the values of the alpha and beta parameters given sample data, we
use the following equations:
Example: The boom-or-bust nature of the revenue generated by a movie from a polarizing
director may be described by a beta distribution. The relevant values (in millions of
dollars) are , , , and . This particular distribution is U-
shaped and extreme values are more likely than moderate values. The figures in the left
margin illustrate beta distributions with different values of α and β, demonstrating its
flexibility. The first figure depicts a U-shaped beta distribution. The second figure depicts
a unimodal beta distribution with a positive skew. The third figure depicts a unimodal
beta distribution with a negative skew.
Gamma Distribution
Range: 0 to +`
Description: The gamma distribution has a very flexible shape controlled by the values of
α and β. The gamma distribution is useful in modeling an uncertain quantity that can be
as small as zero but can also realize large values. To estimate the values of the alpha
and beta parameters given sample data, we use the following equations:
Example: The aggregate amount (in $100,000s) of insurance claims in a region may be
described by a gamma distribution with and .
Range: 0 to
Example: The time between events, such as customer arrivals or customer defaults on
bill payment, are commonly modeled with an exponential distribution. An exponential
random variable possesses the “memoryless” property: the probability of a customer
arrival occurring in the next x minutes does not depend on how long it’s been since the
last arrival. For example, suppose the average time between customer arrivals is 10
minutes. Then, the probability that there will be 25 or more minutes between customer
arrivals if 10 minutes have passed since the last customer arrival is the same as the
probability that there will be more than 15 minutes until the next arrival if a customer just
arrived.
Triangular Distribution
Because the exponential distribution with
Parameters: minimum (a), most mean m is equivalent to the gamma
likely (m), maximum (b) distribution with parameters α = 1 and β =
(1/m), an exponential random variable can
Range: a to b also be generated with GAMMA.INV(RAND(),
1, 1/m).
Description: The triangular
distribution is often used to
subjectively assess uncertainty when
little is known about a random variable besides its range, but it is thought to have a single
mode. The distribution is shaped like a triangle with vertices at a, m, and b.
Native Excel: IF(random < (m − a)/(b − a), a + SQRT((b − a)*(m − a)*random), b − SQRT((b
− a)*(b − m)*(1 − random))) where random refers to a single, separate cell containing
=RAND()
Uniform Distribution
Range: a to b
Example: A service technician making a house call may quote a 4-hour time window in
which he will arrive. If the technician is equally likely to arrive any time during this time
window, then the arrival time of the technician in this time window may be described with
a uniform distribution.
Native Excel:
Log-Normal Distribution
Range: 0 to
Example: The income distribution of the lower 99% of a population is often well
described using a log-normal distribution. For example, for a population in which the
natural logarithm of the income observations is normally distributed with a mean of 3.5
and a standard deviation of 0.5, the income observations are distributed log-normally.
Random variables that can be only a relatively small number of discrete values are often
best modeled with a discrete distribution. The appropriate choice of discrete distribution
relies on the specific situation. For common discrete random variables, we provide several
pieces of information. First, we list the parameters required to specify the distribution. Then,
we outline possible values that can be realized by a random variable that follows the given
distribution. We also provide a short description of the distribution paired with an
illustration. Then, we supply an example of the application of the random variable. We
conclude with the native Excel functionality for generating random values from the
probability distribution.
Possible values: l, l + 1, l + 2, . . ., u − 2, u − 1, u
Description: An integer uniform random variable assumes that the integer values
between l and u are equally likely.
Possible values:
Description: A discrete uniform random variable is equally likely to be any of the specified
set of values .
Example: Consider a game show that awards a contestant a cash prize from an envelope
randomly selected from six possible envelopes. If the envelopes contain $1, $5, $10, $20,
$50, and $100, respectively, then the prize is a discrete uniform random variable with
values {1, 5, 10, 20, 50, 100}.
Possible values:
Example: Analysis of daily sales for the past 50 days at a car dealership shows that on 7
days no cars were sold, on 24 days one car was sold, on 9 days two cars were sold, on 5
days three cars were sold, on 3 days four cars were sold, and on 2 days five cars were
sold. We can estimate the probability distribution of daily sales using the relative
frequencies. An estimate of the probability that no cars are sold on a given day is 7/50 =
0.14, an estimate of the probability that one car is sold is 24/50 = 0.48, and so on. Daily
sales may then be described by a custom discrete distribution with values of {0, 1, 2, 3, 4,
5} with respective weights of {0.14, 0.48, 0.18, 0.10, 0.06, 0.04}.
Native Excel: Use the RAND() function in conjunction with the VLOOKUP function
referencing a table in which each row lists a possible value and a segment of the interval
[0, 1) representing the likelihood of the corresponding value. Figure 11.25 illustrates the
implementation for the car sales example.
Figure 11.25
Native Excel Implementation of Custom Discrete Distribution
Binomial Distribution
Possible values: 0, 1, 2, . . ., n
Example: In a portfolio of 20 similar stocks, each of which has the same probability of
increasing in value of , the total number of stocks that increase in value can be
described by a binomial distribution with parameters and .
Hypergeometric Distribution
Parameters: trials (n), population size (N), successful elements in population (s)
Figure 11.26
Excel Template to Generate Values from a Hypergeometric Distribution
Possible values: 0, 1, 2, . . ., ∞
Description: A negative binomial random variable corresponds to the number of times
that an event fails to occur until an event successfully occurs s times, given that the
probability of an event successfully occurring at each trial is p. When , the negative
binomial is also known as the geometric distribution.
Example: Consider the research and development (R&D) division of a large company. An
R&D division may invest in several projects that fail before investing in 5 projects that
succeed. If each project has a probability of success of 0.50, the number of projects that
fail before 5 successful projects occur is a negative binomial random variable with
parameters and .
Native Excel: Insert the file NegativeBinomial into your Excel workbook, modify the
parameters in the cell range B2:B3, and then reference cell B5 in your simulation model to
obtain a value from a negative binomial distribution. This file uses the RAND() function in
conjunction with the VLOOKUP function referencing a table in which each row lists a
possible value and a segment of the interval [0, 1) representing the likelihood of the
corresponding value; the probability of each value is computed with the NEGBINOM.DIST
function. The following figure illustrates the implementation for the R&D project example.
Figure 11.27
Excel Template to Generate Values from a Negative Binomial Distribution
Poisson Distribution
Possible values: 0, 1, 2, . . .
Example: The number of patients arriving at a health care clinic in a hour can be modeled
with a Poisson random variable with , if on average 5 customers arrive to the store
in a hour.
Native Excel: Insert the file Poisson into your Excel workbook, modify the parameter in
cell B2, and then reference cell B4 in your simulation model to obtain a value from a
Poisson distribution. This file uses the RAND() function in conjunction with the VLOOKUP
function referencing a table in which each row lists a possible value and a segment of
the interval [0, 1) representing the likelihood of the corresponding value; the probability of
each value is computed with the POISSON.DIST function. The following figure illustrates
the implementation for the health care clinic example.
Figure 11.28
Excel Template to Generate Values from a Poisson Distribution
Chapter 11: Monte Carlo Simulation: Appendix 11.1 Common Probability Distributions for Simulation
Book Title: Business Analytics, Third Edition
Printed By: Jordan Miles ([email protected])
© 2019 Cengage Learning, Cengage Learning
© 2020 Cengage Learning Inc. All rights reserved. No part of this work may by reproduced or used in any form or by any means -
graphic, electronic, or mechanical, or in any other manner - without the written permission of the copyright holder.