QR- Variance question

This forum made possible through the generous support of SDN members, donors, and sponsors. Thank you.

Superhuntress

Junior Member
15+ Year Member
Joined
Oct 14, 2004
Messages
111
Reaction score
0
I know how to find the average, but how do you find the variance when you have a list of several numbers?

Members don't see this ad.
 
Variance: Take each number and subtract from it the average. Square this difference. Now take all the squares and add them together. Divide by the # of numbers minus 1.

Standard Deviation: Square root of variance.


Example:

1, 2, 5, 6, 11
Average = 5

1-5 = -4
(-4)^2 = 16

2-5 = -3
(-3)^2 = 9

5-5 = 0
0^2 = 0

6-5 = 1
1^2 = 1

11-5 = 6
6^2 = 36

16 + 9 + 0 + 1 + 36 = 62

We have 5 numbers so take 62 / (5-1) = 62/4 = 15.5 is your variance.

Standard Deviation is sqrt(15.5) ~ 3.937
 
Top