Population Variance Calculator

Calculate population variance (σ²), sample variance (s²), standard deviation, sum of squares, Bessel correction, and CV. Includes deviation table and computation methods.

Minimum 2 values
Population Variance (σ²)
76.3542
SS/n = 916.2500/12
Population SD (σ)
8.7381
√(σ²)
Sample Variance (s²)
83.2955
SS/(n−1) = 916.2500/11
Sample SD (s)
9.1266
√(s²)
Mean (x̄)
81.2500
Sum 975.0000 / n 12
Sum of Squares (SS)
916.2500
Σ(xᵢ − x̄)²
CV (population)
10.75%
σ / |x̄| × 100
CV (sample)
11.23%
s / |x̄| × 100

Dispersion Comparison

Pop. Variance (σ²)
76.35
Sample Variance (s²)
83.30
Pop. SD (σ)
8.74
Sample SD (s)
9.13
IQR
16.00
Range
27.00

Computation Methods

FormulaExpressionValue
Definitional SSΣ(xᵢ − x̄)²916.2500
Computational SSΣX² − (ΣX)²/n = 80,135.0079,218.75916.2500
σ² = SS / n916.2500 / 1276.3542
s² = SS / (n−1)916.2500 / 1183.2955
Bessel correctionn/(n−1) = 12/111.090909

Deviation Table

Value (xᵢ)xᵢ − x̄(xᵢ − x̄)²Bar
68.0000-13.2500175.5625
70.0000-11.2500126.5625
72.0000-9.250085.5625
74.0000-7.250052.5625
76.0000-5.250027.5625
81.0000-0.25000.0625
84.0000+2.75007.5625
85.0000+3.750014.0625
88.0000+6.750045.5625
90.0000+8.750076.5625
92.0000+10.7500115.5625
95.0000+13.7500189.0625
Sum0.0000916.2500
Full Calculation Steps
Data: 68.00, 70.00, 72.00, 74.00, 76.00, 81.00, 84.00, 85.00, 88.00, 90.00, 92.00, 95.00
n = 12
ΣX = 975.0000
x̄ = ΣX / n = 81.2500
ΣX² = 80,135.0000
SS = ΣX² − (ΣX)²/n = 80,135.000079,218.7500 = 916.2500
σ² = SS/n = 76.3542
s² = SS/(n−1) = 83.2955
σ = √σ² = 8.7381
s = √s² = 9.1266
Planning notes, formulas, and examples

About the Population Variance Calculator

The population variance calculator measures how far values spread from the mean by averaging the squared deviations. It can show both population variance (divide by n) and sample variance (divide by n−1), which makes it easy to compare the two conventions side by side.

Along with variance, the calculator shows the sum of squares, standard deviation, coefficient of variation, and a deviation table so you can see how each value contributes to the final result. The comparison view is useful when you want to judge variance against SD, IQR, or range for the same dataset.

Use it for any numeric list where spread matters and you want a transparent calculation trail rather than just a final answer.

When This Page Helps

Use variance when you need a single number that captures overall spread and plugs into later calculations such as standard deviation, ANOVA, or probability models. The squared-deviation table in this calculator shows where the spread is coming from, which is helpful when one or two values are driving the result.

If you are comparing variability across datasets with different scales, the coefficient of variation gives extra context by normalizing spread against the mean.

How to Use the Inputs

  1. Enter numbers separated by commas or spaces (minimum 2 values).
  2. Select whether to show both population and sample, or just one.
  3. Read the variance and standard deviation from the main outputs.
  4. Check the dispersion comparison chart to see how variance relates to SD, IQR, and range.
  5. Review the computation methods table for both the definitional and shortcut formulas.
  6. Examine the deviation table to see each value's contribution to the variance.
  7. Expand the calculation steps for a complete worked solution.
Formula used
Population variance σ² = Σ(xᵢ − μ)² / N. Sample variance s² = Σ(xᵢ − x̄)² / (n − 1). Sum of squares SS = Σ(xᵢ − x̄)² = ΣXᵢ² − (ΣXᵢ)²/n. Bessel correction: s² = σ² × n/(n−1).

Example Calculation

Result: σ² = 72.9097, s² = 79.5379

Mean = 81.25. Sum of squares = 874.917. Population variance = 874.917/12 = 72.91. Sample variance = 874.917/11 = 79.54. The Bessel correction factor is 12/11 = 1.0909, making sample variance about 9% larger than population variance.

Tips & Best Practices

  • Use population variance (σ²) when your data IS the entire population. Use sample variance (s²) when your data is a sample from a larger population.
  • Variance is in squared units (e.g., cm² for height in cm). Standard deviation returns to the original units.
  • The computational formula (ΣX² − (ΣX)²/n) avoids computing deviations from the mean and is numerically efficient for hand calculation.
  • As sample size increases, population and sample variance converge — the Bessel correction becomes negligible.
  • If one value contributes most of the sum of squares (visible in the deviation table), it may be an outlier disproportionately inflating variance.
  • Variance is additive for independent random variables: Var(X+Y) = Var(X) + Var(Y). This property makes variance fundamental in probability theory.

What Variance Measures

Variance is the average of squared distance from the mean. Because the deviations are squared, large gaps from the mean matter more than small ones. That makes variance sensitive to outliers, but it also gives the measure the mathematical structure used in many statistical formulas.

Population vs Sample

If your data includes every member of the group you care about, population variance is the correct choice. If your data is only a sample, sample variance uses Bessel's correction so the estimate is not biased low. This calculator shows both so you can compare them directly.

Interpreting the Result

Variance is always non-negative and is expressed in squared units. If the squared-unit view is inconvenient for reporting, standard deviation is the square root of variance and returns to the original units.

Sources & Methodology

Last updated:

Frequently Asked Questions

  • Population variance (σ²) divides the sum of squared deviations by N (the total count) and is used when your data contains every member of the population. Sample variance (s²) divides by n−1 (Bessel's correction) and is used when your data is a sample from a larger population. The n−1 correction makes s² an unbiased estimator of the true population variance.