Arithmetic Mean is the sum of all observations divided by the number of observations; it represents the central tendency and is the most commonly used measure in statistical analysis.
## Core concept
The arithmetic mean (or average) is a single value that represents the entire dataset. It is calculated by summing all values and dividing by the count of observations.
Simple Arithmetic Mean (ungrouped data): $$\bar{X} = \frac{\sum X}{n}$$
where: - $\sum X$ = sum of all observations - $n$ = number of observations
For grouped data (frequency distribution): $$\bar{X} = \frac{\sum fX}{\sum f}$$
where: - $f$ = frequency of each class - $X$ = mid-point of each class (or actual value) - $\sum f$ = total frequency
## Formula / rule
### Step-by-step calculation for ungrouped data
- List all observations
- Add them together ($\sum X$)
- Count total observations ($n$)
- Divide sum by count
### Step-by-step calculation for grouped data
- Find mid-point of each class: $\text{Mid-point} = \frac{\text{Lower limit} + \text{Upper limit}}{2}$
- Multiply each mid-point by its frequency ($fX$)
- Sum all ($fX$) values
- Sum all frequencies ($\sum f$)
- Divide $\sum fX$ by $\sum f$
### Key properties
- Sum of deviations from mean equals zero: $\sum(X - \bar{X}) = 0$
- Mean is affected by extreme values (outliers)
- Mean is always unique for a dataset
- Shift in origin: If $Y = X + a$, then $\bar{Y} = \bar{X} + a$
- Change in scale: If $Y = bX$, then $\bar{Y} = b\bar{X}$
## Common exam applications
Example 1 (Ungrouped data):
The marks of 5 students are: 45, 52, 48, 55, 60
$$\bar{X} = \frac{45 + 52 + 48 + 55 + 60}{5} = \frac{260}{5} = 52$$
Example 2 (Grouped data):
| Class | Frequency | |-------|-----------| | 0–10 | 5 | | 10–20 | 8 | | 20–30 | 12 | | 30–40 | 10 |
Mid-points: 5, 15, 25, 35
$$\bar{X} = \frac{(5 \times 5) + (15 \times 8) + (25 \times 12) + (35 \times 10)}{5 + 8 + 12 + 10}$$
$$= \frac{25 + 120 + 300 + 350}{35} = \frac{795}{35} = 22.71$$
Use in exams: - Comparing datasets by their average performance - Finding missing values when mean is given - Calculating combined mean of multiple groups (leads to Combined Mean topic) - Basis for weighted mean calculations
## Common mistakes
- Confusing mid-point with class width: Mid-point = (L + U)/2, not the width
- Forgetting to multiply by frequency: In grouped data, always use $fX$, not just $X$
- Summing frequencies incorrectly: Ensure $\sum f$ equals total number of observations
- Treating mean as always appropriate: Mean is distorted by extreme outliers; median may be better for skewed data
- Not using step-deviation method: For large mid-points, use $\bar{X} = A + \frac{\sum fd'}{N} \times h$ (where $d'$ are coded deviations and $h$ is class width) to reduce calculation errors
## Distinction from related measures
| Measure | Best for | |---------|----------| | Mean | Normal distributions, no extreme outliers | | Median | Skewed data, ordinal data | | Mode | Categorical data, most frequent value | | Weighted Mean | When observations have different importance |
The arithmetic mean forms the foundation for variance, standard deviation, and correlation calculations in statistics.