Calculate the arithmetic average of a dataset. The mean is the most common measure of central tendency.
The mean (arithmetic average) is the sum of all values divided by the number of values. It's the most widely used measure of center in statistics.
mean = (x₁ + x₂ + ... + xₙ) / n = Σxᵢ / n
Key Properties:
When to use mean: Symmetric distributions without extreme outliers. Normal/bell-curve data, financial returns, test scores (when fairly distributed).
When NOT to use: Skewed distributions, data with extreme outliers. Example: median home price is better than mean (outliers inflate mean).
List all values in your dataset. Example: 10, 20, 30, 40, 50
Determine how many numbers you have. n = 5 in our example.
Add them up: 10 + 20 + 30 + 40 + 50 = 150
mean = 150 / 5 = 30. The average is 30.
Dataset: 10, 20, 30, 40, 50 Step 1: Count values n = 5 Step 2: Sum all values Σx = 10 + 20 + 30 + 40 + 50 = 150 Step 3: Calculate mean mean = Σx / n = 150 / 5 = 30 Interpretation: The average value is 30. This is the center point around which all values balance.
Related Tools