Omni Calculator logo

Standard Deviation Calculator

Created by Jasmine J Mah
Reviewed by Bogna Szyk and Jack Bowater
Last updated: Jun 05, 2023


The standard deviation calculator shows you how to calculate the mean and standard deviation of a dataset. If you are learning statistics, it is essential to learn how to find the standard deviation because it is very widely used.

You'll love the special features of our standard deviation calculator:

  • It works as a population or sample standard deviation calculator.
  • We'll show you the steps for easy understanding.
  • It's excellent as a learning tool or as a calculator for small datasets.
  • The definition and formula for standard deviation are explained below.

Read on to get started!

What is standard deviation?

The standard deviation is a measure of the variability in a dataset. In other words, the standard deviation describes how "spread-out" the data is around the mean. This calculator deals with separate data points, but we also have a dedicated grouped data standard deviation calculator for ranged data.

A high standard deviation indicates that a dataset is more spread out.

A low standard deviation indicates that the data is more tightly clustered around the mean or less spread out.

Can you imagine what a standard deviation looks like? While you can calculate the standard deviation for any dataset, it can be helpful to visualize the standard deviation for normally distributed data. The empirical rule states that for any dataset which approximates a normal distribution, about 68% of the data will fall within one standard deviation from the mean, shown in the figure below.

The graph of normal distribution
The graph of normal distribution.

Not only is standard deviation a widely-used measure of variation, it forms the basis of other tools which characterize variation, including the quantities calculated by the relative standard deviation calculator and the confidence interval calculator.

Standard deviation formula

The mathematical definition for standard deviation (σ) is the positive square root of the variance (σ2\sigma^2):

variance=σ2standard deviation=σ2=σ\mathrm{variance} = \sigma^2 \\ \mathrm{standard \ deviation} = \sqrt{\sigma^2} = \sigma

The standard deviation equation seems simple, but how do you calculate variance?

Variance is defined as the average squared difference from the mean for all data points. It is written as:

σ2=1NiN(xiμ)2\sigma^2 = \frac{1}{N}\displaystyle\sum_{i}^N (x_i - \mu)^2

where:

  • σ2\sigma^2 - Variance;
  • μ\mu - Mean; and
  • xix_i - The ith data point out of NN total data points.

You can calculate variance in three steps:

  1. Find the difference from the mean for each point. Use the formula:
    xiμx_i - \mu

  2. Square the difference from the mean for each point:
    (xiμ)2(x_i - \mu)^2

  3. Find the average of the squared differences from the mean which you found in step 2:
    1N(xiμ)2\frac{1}{N}\sum (x_i - \mu)^2
    This is the variance for population data. Note that this step is slightly different for sample data (see next section).

Now we recall that the standard deviation is the (positive) square root of variance, so the complete standard deviation equation (for population data) becomes:

σ=1NiN(xiμ)2\sigma = \sqrt{\frac{1}{N}\displaystyle\sum_{i}^N (x_i - \mu)^2}

Population vs. sample standard deviation formula

In many scientific experiments, only a sample of a population is measured for practical reasons. This sample allows us to make inferences about the population. However, when sample data is used to estimate the variance of a population, the variance formula σ2=1N(xiμ)2\sigma^2 = \frac{1}{N}\sum (x_i - \mu)^2 underestimates the variance of the population.

To avoid underestimating the variance of a population (and consequently, the standard deviation), we replace NN with N1N - 1 in the formulas for variance and standard deviation, when sample data is used. This adjustment is known as Bessels' correction.

The sample variance formula becomes:

s2=1N1(xixˉ)2s^2 = \frac{1}{N-1}\sum (x_i - \={x})^2

and the complete standard deviation formula becomes:

s=1N1(xixˉ)2s = \sqrt{\frac{1}{N-1}\sum (x_i - \={x})^2}

where:

  • s2s^2 - Estimate of variance;
  • ss - Estimate of standard deviation; and
  • xˉ\={x} (pronounced as "x-bar") - Sample mean.

Example calculation

Let's say we have a sample dataset with seven numbers: 2, 4, 5, 6, 6, 9, 10. How do we calculate standard deviation? Follow these steps:

1. Calculate the mean

To calculate the mean (x̄), divide the sum of all numbers by the number of data points:
xˉ=2+4+5+6+6+9+107=6\={x} = \frac{2 + 4 + 5 + 6 + 6 + 9 + 10}{7} = 6.

2. Calculate the squared differences from the mean

Now that we know the mean (x̄ = 6), we will calculate the squared difference from the mean for each data point:
(xixˉ)2(x_i - \={x})^2.

For the first point with a value of 2, the calculation would be:
(26)2=(4)2=16(2-6)^2 = (-4)^2 = 16.

The calculated squared differences from the mean for all data points are shown in the table below:

xi

(xi - x̄)2

2

16

4

4

5

1

6

0

6

0

9

9

10

16

3. Calculate the variance and standard deviation

Since we are using sample data, we calculate variance using the sample variance equation and the squared differences from the mean we found in step 2:

s2=1N1(xixˉ)2s^2 = \frac{1}{N-1}\sum (x_i - \={x})^2,
which gives
s2=16+4+1+0+0+9+1671=7.6667s^2 = \frac{16 + 4 + 1 + 0 + 0 + 9 + 16}{7 - 1} = 7.6667.

The standard deviation (s) is the square root of the variance, so our final step is:

s=7.6667=2.7689s = \sqrt{7.6667} = 2.7689.

The standard deviation of the sample dataset was 2.8. Now that you know how to find the standard deviation try calculating it yourself, then check your answer using our calculator!

🔎 Did you know? Standard deviation is one of the measures of dispersion and coefficient of dispersion, concepts that help us understand the spread of our data.

How to find standard deviation by hand?

If you are calculating standard deviation with a handheld calculator, there is an easier formula you should use to use to calculate variance. This alternative formula is mathematically equivalent but easier to type into a calculator.

The easy-to-type formula for variance (for population data) is:

σ2=(xi2)(xi)2N\sigma^2 = \frac{\sum(x_i^2) - (\sum x_i)^2}{N}

The easy-to-type formula for sample variance is:

s2=(xi2)(xi)2N1s^2 = \frac{\sum(x_i^2) - (\sum x_i)^2}{N-1}

To find standard deviation, you would first calculate variance using either of the formulas above. Then, the standard deviation would be the square root of variance.

For example, with a sample dataset of 1, 2, 4, 6, the calculation for sample variance would be:
(xi2)=(12+22+42+62)=57\sum(x_i^2) = (1^2 + 2^2 + 4^2 + 6^2) = 57
(xi)2=(1+2+4+6)24=1694=42.25(\sum x_i)^2 = \frac{(1 + 2 + 4 + 6)^2}{4} = \frac{169}{4} = 42.25

which give

σ2=5742.2541=4.9167\sigma^2 = \frac{57 - 42.25}{4-1} = 4.9167.

The standard deviation would then be the square root of the variance:

4.91672.2\sqrt{4.9167} \approx 2.2

Try it yourself, then check your answer with our standard deviation calculator!

Summary of variables and equations

Table 1. Variables for population data

Variable

Symbol

Equation

Number of observations

NN

Population mean

μ\mu

1Nxi\frac{1}{N}\sum x_i

Sum of squares

SS\mathrm{SS}

(xiμ)2\sum(x_i - \mu)^2

Variance

σ2\sigma^2

SSN\frac{\mathrm{SS}}{N}

Standard deviation

σ\sigma

σ2\sqrt{\sigma^2}

Table 2. Variables for sample data

Variable

Symbol

Equation

Sample mean

xˉ\={x}

1Nxi\frac{1}{N}\sum x_i

Sum of squares

SS\mathrm{SS}

(xixˉ)2\sum (x_i - \={x})^2

Sample variance

s2s^2

SSN1\frac{SS}{N-1}

Standard deviation

ss

s2\sqrt{s^2}

Jasmine J Mah
Data (You may enter up to 30 numbers)
x₁
x₂
Settings
Dataset type
sample
Steps to show
summary
Results
Observations (N):0
Mean (x̄):0
Standard deviation (s):0
Check out 32 similar journalist's guide calculators
AveragePercentagePercentage change… 29 more
People also viewed…

Black hole collision

The Black Hole Collision Calculator lets you see the effects of a black hole collision, as well as revealing some of the mysteries of black holes, come on in and enjoy!

Chilled drink

With the chilled drink calculator, you can quickly check how long you need to keep your drink in the fridge or another cold place to have it at its optimal temperature. You can follow how the temperature changes with time with our interactive graph.

Outlier

The outlier calculator is here to analyze your dataset of up to thirty entries and tell you if any of them are outliers, i.e., differ a lot from the others.

Permutation with repetition

Find out how many different arrangements of a set of objects are possible using this permutation with repetition calculator.
Copyright by Omni Calculator sp. z o.o.
Privacy, Cookies & Terms of Service