Main Content

Lesson 1: Decision Making Under Uncertainty

Measures of Variability

Now we will discuss measures of variability (variance, standard deviation, and range) using the production line example we used before.

Variance

Variance:
Variance and its related measure, standard deviation, are arguably the most important statistics. Used to measure variability, they also play a vital role in almost all statistical inference procedures.
The formula for variance is given by: sum squared distance from mean, divide by one less than the number of numbers.
 
Population variance is denoted by...(Lowercase Greek letter “sigma” squared)

σ 2 = i = 1 N ( x i μ ) 2 N

Sample variance is denoted by...(Lowercase “S” squared)

s 2 = i = 1 n ( x i x ¯ ) 2 n 1

Example: Last Five Weights, Line 1
Time (minutes)Line 1 weight (oz)
Table 1.5. Variance: Time and Weight
544.024.85
544.525.04
545.024.68
545.524.83
546.024.82
 

X ¯ = 24.85 + 25.04 + 24.68 + 24.83 + 24.82 5 = 24.84

s 2 = j = 1 n ( X j X ¯ ) 2 n 1 = ( X 1 X ¯ ) 2 + ( X 2 X ¯ ) 2 + + ( X n X ¯ ) 2 n 1

s 2 = ( 24.85 24.84 ) 2 + ( 25.04 24.84 ) 2 + ( 24.68 24.84 ) 2 + ( 24.83 24.84 ) 2 + ( 24.82 24.84 ) 2 4

 

Why take the squared difference from the mean?

So that positive and negative differences do not cancel each other out.

 

Standard Deviation
Square root of the variance
 

Population standard deviation:

σ = σ 2

Sample standard deviation:

s = s 2

Example: Last Five Weights, Line 1

Time (minutes)Line 1 weight (oz)
Table 1.6. Standard Deviation Time and Weight
544.024.85
544.525.04
545.024.68
545.524.83
546.024.82

 

s = j = 1 n ( X j X ¯ ) 2 n 1 = ( X 1 X ¯ ) 2 + ( X 2 X ¯ ) 2 + + ( X n X ¯ ) 2 n 1

s = 0.0167397 = 0.12805

Why take the square root?

Same unit as mean, more meaningful.

 

One of the simplest measures of spread is the range.

Range
the difference between the two extreme values. It is the measure of spread.

Range = Max - Min

Example: Last Five Weights, Line 1

Find the range for the last five weights from Line 1.

 
Time (minutes)Line 1 weight (oz)
Table 1.7. Range: Time and Weight
544.024.85
544.525.04
545.024.68
545.524.83
546.024.82
 

Range = 25.04 - 24.68 = 0.36


Top of page