Sign In
For each data value, x - x can now be calculated and added to a table. This shows how much each data point varies from the mean.
| x | x - x |
|---|---|
| 1 | 1 - 5 = - 4 |
| 5 | 5 - 5= 0 |
| 3 | 3 - 5 = - 2 |
| 4 | 4 - 5 = - 1 |
| 5 | 5 - 5 = 0 |
| 12 | 12 - 5 = 7 |
Square the deviations, and add them to a new column in the table.
| x | x - x | (x - x)^2 |
|---|---|---|
| 1 | - 4 | (- 4)^2 = 16 |
| 5 | 0 | 0^2 = 0 |
| 3 | -2 | (- 2)^2 = 4 |
| 4 | - 1 | (- 1)^2 = 1 |
| 5 | 0 | 0^2 = 0 |
| 12 | 7 | 7^2 = 49 |
Add terms
Calculate quotient
Round to 2 decimal place(s)
Finally, take the square root of the just found quotient to get the standard deviation. Here, the fraction is used instead of the quotient, to avoid rounding errors. σ = sqrt(70/6) ≈ 3.4 Thus, a randomly chosen value from this data set is expected to deviate roughly 3.4 units from the mean.