Remarks
We calculate variances for some common distributions. Some details are omitted—usually
details of algebraic manipulation or the straightforward evaluation of integrals. In somecases we use well known sums of infinite series or values of definite integrals. A number
of pertinent facts are summarized in
Appendix B . Some Mathematical Aids. The results below
are included in the table in
Appendix C .
Variances of some discrete distributions
-
Indicator function
-
Simple random variable
(primitive
form)
.
-
Binomial
.
-
Geometric
.
We use a trick:
-
Poisson
Using
, we have
Thus,
. Note that both the mean and the variance
have common value
μ .
Some absolutely continuous distributions
-
Uniform on
-
Symmetric triangular
Because of the shift property
(V2) , we may center the distribution at the origin. Then
the distribution is symmetric triangular
, where
. Because
of the symmetry
Now, in this case,
-
Exponential
-
Gamma
Hence
.
-
Normal
Consider
.
Extensions of some previous examples
In the unit on expectations, we calculate the mean for a variety of cases. We revisit some of those
examples and calculate the variances.
Expected winnings (
Example 8 From "mathematical expectation: simple random variables")
A bettor places three bets at $2.00 each. The first pays $10.00 with probability 0.15,
the second $8.00 with probability 0.20, and the third $20.00 with probability 0.10.
SOLUTION
The net gain may be expressed
We may reasonbly suppose the class
is independent (this assumption is not
necessary in computing the mean). Then
Calculation is straightforward. We may use MATLAB to perform the arithmetic.
c = [10 8 20];p = 0.01*[15 20 10];q = 1 - p;
VX = sum(c.^2.*p.*q)VX = 58.9900
Got questions? Get instant answers now!
A function of
X (
Example 9 From "mathematical expectation: simple random variables")
Suppose
X in a primitive form is
with probabilities
.
Let
. Determine
and
c = [-3 -1 2 -3 4 -1 1 2 3 2]; % Original coefficientspc = 0.01*[8 11 6 13 5 8 12 7 14 16]; % Probabilities for C_jG = c.^2 + 2*c % g(c_j)
EG = G*pc' % Direct calculation E[g(X)]EG = 6.4200
VG = (G.^2)*pc' - EG^2 % Direct calculation Var[g(X)]VG = 40.8036
[Z,PZ]= csort(G,pc); % Distribution for Z = g(X)
EZ = Z*PZ' % E[Z]EZ = 6.4200
VZ = (Z.^2)*PZ' - EZ^2 % Var[Z]VZ = 40.8036
Got questions? Get instant answers now!