Some absolutely continuous distributions
-
Uniform on
-
Symmetric triangular
where
M
Y is the moment generating function for
uniform
and similarly
for
M
Z . Thus,
X has the same distribution as the difference of two independent random
variables, each uniform on
.
-
Exponential
In example 1, above, we show that
.
-
Gamma
For
, a positive integer,
which shows that in this case
X has the distribution of the sum of
n independent
random variables each exponential
.
-
Normal
.
- The standardized normal,
Now
so that
since the integrand (including the constant
) is the density for
.
-
implies by property (T1)
Affine combination of independent normal random variables
Suppose
is an independent pair with
and
. Let
. Then
Z is normal, for
by properties of expectation and variance
and by the operational properties for the moment generating function
The form of
M
Z shows that
Z is normally distributed.
Got questions? Get instant answers now!
Moment generating function and simple random variables
Suppose
in canonical form. That is,
A
i is the event
for each of the distinct values in the range of
X ,
with
. Then the moment generating function for
X is
The moment generating function
M
X is thus related directly and simply to the distribution
for random variable
X .
Consider the problem of determining the sum of an independent pair
of
simple random variables. The moment generating function for the sum is the product ofthe moment generating functions. Now if
, with
, we have
The various values are sums
of pairs
of values. Each
of these sums has probability
for the values corresponding to
.
Since more than one pair sum may have the same value, we need to sort the values,consolidate like values and add the probabilties for like values to achieve the
distribution for the sum. We have an m-function
mgsum for
achieving this directly. It produces the pair-products for the probabilities and the pair-sums forthe values, then performs a csort operation. Although not directly dependent upon the
moment generating function analysis, it produces the same result as that produced by multiplyingmoment generating functions.
Distribution for a sum of independent simple random variables
Suppose the pair
is independent with distributions
Determine the distribution for
.
X = [1 3 5 7];Y = 2:4;
PX = 0.1*[2 4 3 1];
PY = 0.1*[3 5 2];
[Z,PZ]= mgsum(X,Y,PX,PY);
disp([Z;PZ]')
3.0000 0.06004.0000 0.1000
5.0000 0.16006.0000 0.2000
7.0000 0.17008.0000 0.1500
9.0000 0.090010.0000 0.0500
11.0000 0.0200
Got questions? Get instant answers now!