Method and source check
Last checked:
Source and implementation check; this is not professional review or advice.
Method
The calculator finds the mean and squared deviations, then reports both population standard deviation (divide by N) and sample standard deviation (divide by n − 1).
σ = √(Σ(xᵢ − μ)² / N)
s = √(Σ(xᵢ − x̄)² / (n − 1))
Variables and units
- xᵢ
- each observed value
- μ / x̄
- population mean / sample mean
- N / n
- population size / sample size
Worked example
For 2, 4, 4, 4, 5, 5, 7, 9: the mean is 5, population standard deviation is 2, and sample standard deviation is about 2.1381.
Limitations
- Use the population result only when the values are the complete population. Use the sample result when the values are a sample; neither result proves that data are normally distributed.