Calculate the total sum of squared deviations from the mean—the foundation of variance and standard deviation.
Last updated: March 2026
Enter numerical values
Sum of Squares (SS) is the total of all squared deviations from the mean. It measures the total variability in a dataset: SS = Σ(xᵢ − x̄)². The "squared" part is crucial because it penalizes large deviations more heavily and eliminates sign issues (all terms are positive).
Sum of Squares is the numerator in variance calculations. Divide SS by n for population variance, or by (n − 1) for sample variance (Bessel's correction). It's fundamental to ANOVA, regression, and hypothesis testing. A larger SS indicates greater spread; SS = 0 means all values are identical.
SS forms the basis of many statistical techniques including t-tests, F-tests, and linear regression where we minimize SS of residuals.
Product Quality Control: Weight Consistency
Squaring eliminates negative signs (so deviations don't cancel) and emphasizes large deviations more than small ones. A deviation of 2 contributes 4; a deviation of 3 contributes 9. This penalizes outliers.
They use the same calculation: SS = Σ(xᵢ − x̄)². The difference is in converting SS to variance: divide by n (population) or n−1 (sample). Bessel's correction (n−1) makes the sample variance unbiased.
Yes, SS = 0 only if all data values are identical (no variability). In practice, this is rare. Any variation in data produces SS {'>'} 0.
SS is the numerator in variance calculations, which define the width of a normal distribution. A curve with larger SS (variance) is wider and flatter; smaller SS means a taller, narrower curve.
Very yes. Outliers are squared, so they contribute disproportionately to SS. A single outlier can dramatically increase SS. This is why robust measures like IQR (interquartile range) are sometimes preferred.
ANOVA decomposes total SS into between-group SS and within-group SS. The F-statistic compares these: F = (between-group SS) / (within-group SS). Larger F indicates stronger group differences.
Related Tools