Variance Calculator
Calculate population or sample variance from a comma-separated list of numbers.
Variance vs Standard Deviation
Variance and standard deviation both measure how spread out a dataset is, but variance is expressed in squared units while standard deviation is in the original units. If you're measuring heights in centimeters, variance is in cm² — a unit with no intuitive meaning. Standard deviation is in centimeters, which makes sense and is therefore more commonly reported.
Despite being less interpretable on its own, variance is mathematically convenient. In statistics, when you combine independent random variables, their variances add directly. You cannot simply add standard deviations. This is why variance appears in ANOVA, regression, and portfolio theory, even though standard deviation is the metric reported to audiences.
The 68-95-99.7 rule (that 68% of data falls within one standard deviation of the mean, 95% within two, 99.7% within three) is stated in standard deviations rather than variance — a reflection of how much more interpretable standard deviation is for communicating results.
Sample vs Population: Why It Matters
Population variance divides by N (the count of all values). Sample variance divides by N-1. The N-1 correction, called Bessel's correction, makes sample variance an unbiased estimator of the true population variance. Without it, sample variance would systematically underestimate the true spread of the population.
In almost all real-world applications, you are working with a sample (a subset of data) rather than an entire population. Unless you have literally measured every member of the population you're studying — every employee at a company, every student in a school — use sample variance.