|
![]() |
$ ./mm1-utilization -a 1.0 -s 0.8 0.854407 $
$ ./mm1-utilization -a 1.0 -s 0.8 0.759872 $
Oops.
$ j=1 ; while [ $j -lt 6 ] ; do ./mm1-utilization -a 1.0 -s 0.8 ; (( j++ )) done 0.824176 0.834251 0.723797 0.793702 0.777018 $
$ j=1 ; while [ $j -lt 11 ] ; do ./mm1-utilization -a 1.0 -s 0.8 ; (( j++ )) done | stats min = 0.736751 max = 0.842563 n = 10 average = 0.790132 std dev = 0.0320734 $
$ j=1 ; while [ $j -lt 11 ] ; do ./mm1-utilization -a 1.0 -s 0.8 ; (( j++ )) done | stats min = 0.748613 max = 0.894508 n = 10 average = 0.81606 std dev = 0.0485143 $
$ j=1 ; while [ $j -lt 41 ] ; do ./mm1-utilization 1.0 0.8 ; (( j++ )) ; done | ./stats | grep ave | awk '{print $3}' 0.79177 $
![]() |
![]() |
![]() |
and
has the standard normal distribution.
If the n samples have mean x and variance s2, then the random variable
is t-distributed with n - 1 degrees of freedom.
![]() |
|
![]() |
|
![]() |
|
has a chi-square distribution with n - 1 degrees of freedom, where
estimate the sampled distribution's variance with 95% confidence (a = 0.05).
chi2(0.975, 10 - 1) = 19.0,
(n - 1)s2 = (10 - 1)0.002354 = 0.021186, and
[ 0.021186/19.0, 0.021186/2.7 ] = [ 0.001115, 0.007847 ]
This page last modified on 4 April 2005.