Σ
SDCalc
IntermediateFormulas·11 min

Assumed Mean Method for Standard Deviation in Grouped Data

Learn the assumed mean method for standard deviation in grouped data, including shortcut formulas, step-deviation, and a full worked example from class intervals.

By Standard Deviation Calculator Team · Data Science Team·Published

Why Use an Assumed Mean

The assumed mean method is a grouped-data shortcut for standard deviation. Instead of subtracting the true mean from every class midpoint, you start from a convenient reference value A and measure each midpoint relative to that reference. The final answer is the same as any other correct grouped-data method, but the intermediate arithmetic is often easier.

This is most useful when your data already appear in class intervals such as 0-10, 10-20, and 20-30. In those cases, you are already using midpoint-based estimates, as explained in Standard Deviation from a Frequency Table. The assumed mean method simply makes the table work cleaner, especially for by-hand calculations, classroom problems, and quick spreadsheet checks.

MethodMain ideaBest use case
Direct midpoint methodUse each midpoint m directlyShort tables or calculator-based work
Assumed mean methodUse deviations d = m - A from a convenient reference ABy-hand grouped-data calculations
Step-deviation methodScale deviations by common class width hLarge midpoints or evenly spaced classes

Important limitation

This method still depends on class midpoints, so for grouped intervals the result is an estimate, not the exact raw-data standard deviation.

If you have the raw observations, use the descriptive statistics calculator, sample standard deviation calculator, or population standard deviation calculator instead of compressing the data first.

Core Formulas for Grouped Data

Let mᵢ be the midpoint of class i, fᵢ its frequency, and A an assumed mean chosen near the center of the table. Define dᵢ = mᵢ - A.

Mean from the assumed mean method

x̄ = A + Σ(fᵢdᵢ) / Σfᵢ

Population variance from assumed mean deviations

σ² = [Σ(fᵢdᵢ²) / N] - [Σ(fᵢdᵢ) / N]²

Sample variance from assumed mean deviations

s² = [Σ(fᵢdᵢ²) - (Σfᵢdᵢ)² / n] / (n - 1)

These formulas are the grouped-data version of the shortcut formula for standard deviation. The difference is that you are centering the arithmetic around a convenient A rather than around zero.

How to choose A

Pick a midpoint near the center of the distribution so the deviations dᵢ stay small. That reduces arithmetic errors without changing the final result.

Worked Example with Class Intervals

Suppose weekly order values are summarized in grouped classes:

ClassFrequency fMidpoint md = m - Af × df × d²
0-1025-20-40800
10-20515-10-50500
20-30825000
30-404351040400
40-501452020400
Total20-302100

Choose A = 25, which is the midpoint of the central class. Then the total frequency is N = 20, Σfd = -30, and Σfd² = 2100.

1

Estimate the grouped mean

x̄ = 25 + (-30 / 20) = 23.5.
2

Compute the population variance

σ² = 2100 / 20 - (-30 / 20)² = 105 - 2.25 = 102.75.
3

Take the square root

σ = √102.75 ≈ 10.14.
4

Convert to the sample version if needed

If these 20 observations are a sample, use s² = [2100 - 900 / 20] / 19 = 2055 / 19 ≈ 108.16, so s ≈ 10.40.

What changed compared with the direct midpoint method?

Only the arithmetic layout. You still used class midpoints, frequencies, and the sample-versus-population denominator choice from Sample vs Population. The assumed mean simply avoided repeatedly working with larger midpoint values.

Step-Deviation Method

When class widths are equal, you can simplify even further with the step-deviation method. Let h be the common class width and define uᵢ = (mᵢ - A) / h. This rescales the deviations into smaller integers.

Mean using step deviation

x̄ = A + h[Σ(fᵢuᵢ) / N]

Population variance using step deviation

σ² = h²{[Σ(fᵢuᵢ²) / N] - [Σ(fᵢuᵢ) / N]²}

In the example above, the common class width is h = 10, so the scaled deviations are u = -2, -1, 0, 1, 2. That gives Σfu = -3 and Σfu² = 21, which leads to the same result: σ² = 10²(21/20 - 9/400) = 102.75.

QuestionAssumed mean methodStep-deviation method
Need equal class widths?NoYes
Main shortcutCenter around ACenter around A and divide by h
Best whenMidpoints are awkward but widths may varyWidths are uniform and numbers are large

When This Method Is Worth Using

The assumed mean method is most useful when grouped data create repetitive subtraction. It is common in school statistics, exam settings, field surveys, production summaries, and legacy reports where only a grouped table is available.

  • Use it when you already have a grouped frequency table and need a cleaner hand calculation.
  • Use it when class midpoints are large enough that direct squaring is error-prone.
  • Skip it when raw observations are available and software can calculate the exact result directly.
  • Skip it for open-ended classes like 50 and above, where a true midpoint is not well defined.

If you need exact values from unsummarized data, the grouped-data shortcut is the wrong starting point. If you need a software workflow instead, read How to Calculate Standard Deviation in Google Sheets or Standard Deviation in Excel: STDEV.S vs STDEV.P.

Common Mistakes

  • Wrong midpoint:Use the midpoint of each class interval, not the lower or upper boundary by itself.
  • Wrong denominator:Use **N** for a population and **n - 1** for a sample. The assumed mean shortcut does not remove that distinction.
  • Unequal-width confusion:The assumed mean method still works with unequal widths, but the step-deviation shortcut does not unless you have a consistent class width **h**.
  • Treating estimates as exact:Grouped-data results are midpoint-based approximations unless the table lists exact repeated values rather than intervals.

Assumed Mean Checklist

1

Build or confirm the grouped table

Make sure every class interval has a frequency and, if needed, a valid midpoint.
2

Choose a convenient assumed mean A

Pick a central midpoint so the deviations stay small.
3

Compute deviation columns

Fill in d = m - A, then compute fd and fd².
4

Decide sample or population

Use the correct denominator before taking the square root.
5

Label the result honestly

If the data came from class intervals, report the standard deviation as a grouped-data estimate.

For most real-world analysis, the assumed mean method is a convenience technique rather than a separate statistical concept. It matters because it helps you reach the same grouped-data standard deviation with fewer arithmetic mistakes.

Further Reading

Sources

References and further authoritative reading used in preparing this article.

  1. NIST/SEMATECH e-Handbook of Statistical Methods
  2. Standard deviation
  3. Frequency distribution