Calculadora de Desviación EstándarFórmula

## How to Calculate Standard Deviation

### Formula

**Population SD (sigma) = sqrt( Sum of (xi - mean)^2 / N )**

**Sample SD (s) = sqrt( Sum of (xi - mean)^2 / (n - 1) )**

Standard deviation is the square root of the variance and is expressed in the same units as the original data. About 68% of data in a normal distribution falls within one standard deviation of the mean.

Ejemplo Resuelto

Find the standard deviation of 4, 8, 6, 5, 7.

  1. Mean = 30 / 5 = 6
  2. Squared deviations: 4, 4, 0, 1, 1
  3. Sum of squares = 10
  4. Sample SD = sqrt(10 / 4) = sqrt(2.5) ≈ 1.5811
  5. Population SD = sqrt(10 / 5) = sqrt(2) ≈ 1.4142