Next: Queueing Models
Up: Statistical Model of Simulation
Previous: Discrete Random Variables
Contineous random variables can be used to describe phenomena where the values of a random
variable can be any value in an interval: the time to failure, or the length of a broken rod.
Seven distributions will be discussed.
- Uniform distributin.
- pdf:
- cdf:
- mean:
- variance:
- the interval where can assume value can be arbitrarily long, but
it cannot be infinite.
- Example 6.15 and 6.16 on page 202, 203
- Exponential distribution. Exponential distributed random variable is one of
most frequently used distribution in computer simulation. It is widely used in simulations
of computer network and others.
- pdf
- cdf
- mean
- variance
- memoryless property of the exponential distributed random variables: the future
values of the exponentially distributed values are not affected by the past values. Compare this
to, for example, a uniformly distributed random variable, one can see the difference. For example,
when throwing a fair coin, we can consider the probability of head and tail is the same which
has the value of 0.5. If, after a result of head, we would expect to see a tail (though
it may not happen). In exponentially distributed random variable, we cannot have this type
of expectation. In another word, we know nothing about the future value of the random variable
given a full history of the past.
Mathematical proof.
- Example 6.17 and 6.18 on page 204 and 205 where Example 6.18 demonstrates
the memoryless property of the exponential distribution.
- Gamma distribution.
- pdf
where
when is an integer.
- When , this is the exponential distribution. In another word,
the Gamma distribution is a more general form of exponential distribution.
- mean
- variance
- Erlang distribution.
- When the parameter in Gamma distribution is an integer, the distribution
is refered to as Erlang distribution.
- When , a positive integer, the cdf of Erlang distribution is (using
integration by parts)
which is the sum of Poisson terms with mean
- mean
- variance
- Example 6.19, 6.20 on page 208, 209.
- Normal distribution.
- pdf
- cdf
This value is very difficult to calculate. Often a table is made for . Because
an
can be transformed into by let
- To calculate for
, we use
Example: to calculate F(56) for N(50,9), we have
- mean
- variance
- Notation:
- The curve shape of the normal pdf is like a "bell".
- properties:
-
and
-
the pdf is symmetric about because of this,
.
- the maximum value of the pdf occurs at (thus, the mean and the
mode are equal.
- Example 6.21 and 6.22 on page 211, 6.23 and 6.24 on page 213.
- Weibull distribution. The random variable has a Weibull distribution if its pdf
has the form
- Weibull distribution has the following three parameters:
- which has the range of
which is the
location parameter
- which is greater than zero which is the scale parameter
- which is a positive value determines the shape
Next: Queueing Models
Up: Statistical Model of Simulation
Previous: Discrete Random Variables
Meng Xiannong
2002-10-18