Here is a complete, in-depth guide to Measures of Central Tendency:
📊 Measures of Central Tendency - Complete Detailed Guide
What is a Measure of Central Tendency?
A measure of central tendency is a single representative value that describes the entire dataset by identifying the center or typical value around which data clusters. It condenses a large dataset into one number that gives a general picture of the data.
Why is it important?
- Summarizes large datasets into a single meaningful value
- Enables comparison between different datasets
- Forms the foundation for further statistical analysis
- Helps in decision-making in business, research, medicine, and economics
Classification of Measures of Central Tendency
Measures of Central Tendency
├── Mathematical Averages
│ ├── Arithmetic Mean (Simple & Weighted)
│ ├── Geometric Mean
│ └── Harmonic Mean
└── Positional Averages
├── Median
└── Mode
PART 1: MEAN
1.1 Arithmetic Mean (AM)
The arithmetic mean is the sum of all observations divided by the total number of observations. When people say "average," they almost always mean the arithmetic mean.
A) Simple Arithmetic Mean - Ungrouped Data
$$\bar{x} = \frac{x_1 + x_2 + \cdots + x_n}{n} = \frac{\sum_{i=1}^{n} x_i}{n}$$
Example:
Marks of 7 students: 45, 60, 72, 55, 80, 65, 70
$$\bar{x} = \frac{45+60+72+55+80+65+70}{7} = \frac{447}{7} = \textbf{63.86}$$
B) Arithmetic Mean - Grouped Data (3 Methods)
Method 1: Direct Method
$$\bar{x} = \frac{\sum f_i x_i}{\sum f_i}$$
Where $x_i$ = midpoint of class interval, $f_i$ = frequency of that class.
Example:
| Class | Frequency (f) | Midpoint (x) | fx |
|---|
| 10-20 | 5 | 15 | 75 |
| 20-30 | 8 | 25 | 200 |
| 30-40 | 12 | 35 | 420 |
| 40-50 | 7 | 45 | 315 |
| 50-60 | 3 | 55 | 165 |
| Total | 35 | | 1175 |
$$\bar{x} = \frac{1175}{35} = \textbf{33.57}$$
Method 2: Assumed Mean (Short-cut) Method
$$\bar{x} = A + \frac{\sum f_i d_i}{\sum f_i}$$
Where $A$ = assumed mean, $d_i = x_i - A$ (deviation from assumed mean).
This method reduces calculation effort when values are large.
Method 3: Step Deviation Method
$$\bar{x} = A + \frac{\sum f_i u_i}{\sum f_i} \times h$$
Where $u_i = \frac{x_i - A}{h}$, and $h$ = class width.
This further simplifies computation by dividing deviations by the class width.
Properties of Arithmetic Mean
- Sum of deviations from mean = 0: $\sum(x_i - \bar{x}) = 0$
- Least sum of squared deviations: Mean minimizes $\sum(x_i - \bar{x})^2$
- Combined mean: If two groups have means $\bar{x}_1$ and $\bar{x}2$ with sizes $n_1$ and $n_2$:
$$\bar{x}{combined} = \frac{n_1\bar{x}_1 + n_2\bar{x}_2}{n_1 + n_2}$$
- Effect of transformation: If every value is multiplied by $k$, the mean is also multiplied by $k$
- Unique: There is only one arithmetic mean for any dataset
Merits and Demerits of Arithmetic Mean
| Merits | Demerits |
|---|
| Easy to understand and calculate | Affected by extreme values (outliers) |
| Uses all data values | Cannot be used for open-ended classes |
| Basis for advanced statistics | Cannot be found graphically |
| Unique - only one value exists | May give absurd values (e.g., 2.5 children) |
| Algebraically manipulable | Not suitable for qualitative data |
1.2 Weighted Arithmetic Mean
When different data values have different levels of importance (weight), we use the weighted mean.
$$\bar{x}_w = \frac{\sum w_i x_i}{\sum w_i}$$
Example: A student scores in 3 subjects with different credit hours:
| Subject | Score (x) | Weight/Credits (w) | wx |
|---|
| Math | 85 | 4 | 340 |
| English | 70 | 2 | 140 |
| Science | 90 | 3 | 270 |
| Total | | 9 | 750 |
$$\bar{x}_w = \frac{750}{9} = \textbf{83.33}$$
Applications: GPA calculation, price index numbers, weighted averages in finance.
1.3 Geometric Mean (GM)
The geometric mean is the nth root of the product of n values. It is used when data involves rates, ratios, or growth.
$$GM = \sqrt[n]{x_1 \cdot x_2 \cdot x_3 \cdots x_n} = \left(\prod_{i=1}^{n} x_i\right)^{1/n}$$
Using logarithms (practical calculation):
$$\log(GM) = \frac{\sum \log x_i}{n} \quad \Rightarrow \quad GM = \text{antilog}\left(\frac{\sum \log x_i}{n}\right)$$
For grouped data:
$$GM = \text{antilog}\left(\frac{\sum f_i \log x_i}{\sum f_i}\right)$$
Example: Population growth rates over 4 years: 1.05, 1.08, 1.03, 1.12
$$GM = \sqrt[4]{1.05 \times 1.08 \times 1.03 \times 1.12} = \sqrt[4]{1.3107} \approx \textbf{1.070}$$
Average growth rate = 7% per year
Applications:
- Population growth rates
- Compound interest calculations
- Stock market returns
- Biological growth rates
- Index numbers
Key property: $AM \geq GM \geq HM$ (always, for positive numbers)
1.4 Harmonic Mean (HM)
The harmonic mean is the reciprocal of the arithmetic mean of reciprocals. It gives more weight to smaller values.
$$HM = \frac{n}{\sum_{i=1}^{n} \frac{1}{x_i}} = \frac{n}{\frac{1}{x_1}+\frac{1}{x_2}+\cdots+\frac{1}{x_n}}$$
For grouped data:
$$HM = \frac{\sum f_i}{\sum \frac{f_i}{x_i}}$$
Example: A car travels 60 km at 30 km/h and 60 km at 60 km/h. Find average speed.
$$HM = \frac{2}{\frac{1}{30}+\frac{1}{60}} = \frac{2}{\frac{3}{60}} = \frac{2 \times 60}{3} = \textbf{40 km/h}$$
(Note: Arithmetic mean would give 45 km/h, which is incorrect for equal distances)
Applications:
- Average speeds over equal distances
- Rates (price per unit, efficiency)
- Finance (P/E ratios)
1.5 Relationship: AM, GM, HM
For any set of positive numbers:
$$\boxed{AM \geq GM \geq HM}$$
Equality holds only when all values are equal.
Also: $GM^2 = AM \times HM$
PART 2: MEDIAN
2.1 Definition
The median is the middle value of an ordered dataset. It divides the distribution into two equal halves - 50% of values lie below and 50% above.
The median is a positional average - its value depends on position, not magnitude of observations.
2.2 Median for Ungrouped Data
Step 1: Arrange data in ascending (or descending) order.
Step 2: Apply the formula:
-
Odd n:
$$\text{Median} = \left(\frac{n+1}{2}\right)^{th} \text{ observation}$$
-
Even n:
$$\text{Median} = \frac{\left(\frac{n}{2}\right)^{th} + \left(\frac{n}{2}+1\right)^{th} \text{ observations}}{2}$$
Example 1 (Odd):
Data: 3, 7, 8, 12, 15, 18, 22 → n = 7
Median position = (7+1)/2 = 4th value = 12
Example 2 (Even):
Data: 5, 9, 12, 15, 18, 22 → n = 6
Median = (12 + 15)/2 = 13.5
2.3 Median for Grouped Data
$$\text{Median} = L + \frac{\frac{N}{2} - cf}{f} \times h$$
Where:
- $L$ = Lower class boundary of median class
- $N$ = Total frequency ($\sum f$)
- $cf$ = Cumulative frequency before the median class
- $f$ = Frequency of the median class
- $h$ = Class width
Finding the Median Class: The class where cumulative frequency first exceeds or equals $N/2$.
Detailed Example:
| Class | Frequency | Cumulative Frequency |
|---|
| 10-20 | 5 | 5 |
| 20-30 | 10 | 15 |
| 30-40 | 12 | 27 ← |
| 40-50 | 8 | 35 |
| 50-60 | 5 | 40 |
| Total | 40 | |
$N = 40$, so $N/2 = 20$. The cumulative frequency first exceeds 20 at class 30-40.
So: $L=30$, $cf=15$, $f=12$, $h=10$
$$\text{Median} = 30 + \frac{20-15}{12} \times 10 = 30 + \frac{5}{12} \times 10 = 30 + 4.17 = \textbf{34.17}$$
2.4 Graphical Method - Ogive
The median can also be found graphically using a cumulative frequency curve (Ogive):
- Plot a "less than" ogive (cumulative frequency vs upper class boundary)
- Draw a horizontal line from $N/2$ on the y-axis to the curve
- Drop a vertical line to the x-axis - that value is the median
2.5 Quartiles, Deciles, and Percentiles (Partition Values)
The median is a special case of partition values:
| Measure | Divides into | Formula for grouped data |
|---|
| Quartile (Q₁, Q₂, Q₃) | 4 equal parts | $Q_k = L + \frac{\frac{kN}{4} - cf}{f} \times h$ |
| Decile (D₁...D₉) | 10 equal parts | $D_k = L + \frac{\frac{kN}{10} - cf}{f} \times h$ |
| Percentile (P₁...P₉₉) | 100 equal parts | $P_k = L + \frac{\frac{kN}{100} - cf}{f} \times h$ |
- Q₂ = D₅ = P₅₀ = Median (all refer to the same value)
2.6 Properties of Median
- Not affected by extreme values - most important property
- Can be calculated for open-ended class intervals
- Can be located graphically
- Applicable to ordinal data
- The sum of absolute deviations from the median is minimum: $\sum|x_i - M|$ is minimized
Merits and Demerits of Median
| Merits | Demerits |
|---|
| Not affected by outliers | Does not use all data values |
| Can be found graphically | Less mathematically tractable |
| Works for open-ended classes | Not suitable for further algebraic treatment |
| Suitable for ordinal data | Affected by sampling variability |
| Simple to understand | May not represent the data well if large gaps exist |
PART 3: MODE
3.1 Definition
The mode is the value that occurs most frequently in a dataset. It is the most typical or fashionable value.
The word "mode" comes from the French word "la mode" meaning fashion.
3.2 Mode for Ungrouped Data
Simply find the value with the highest frequency.
Example:
Data: 2, 3, 5, 2, 5, 7, 5, 3, 8, 5
Mode = 5 (appears 4 times)
Types of Mode:
- Unimodal - one mode: {2, 3, 5, 7, 5, 7, 7} → Mode = 7
- Bimodal - two modes: {2, 3, 3, 5, 5, 7} → Modes = 3 and 5
- Multimodal - multiple modes: more than 2 values with same highest frequency
- No mode - all values appear equally often: {1, 2, 3, 4, 5}
3.3 Mode for Grouped Data
First, identify the modal class - the class with the highest frequency.
$$\text{Mode} = L + \frac{f_1 - f_0}{2f_1 - f_0 - f_2} \times h$$
Where:
- $L$ = Lower boundary of the modal class
- $f_1$ = Frequency of the modal class
- $f_0$ = Frequency of the class before the modal class
- $f_2$ = Frequency of the class after the modal class
- $h$ = Class width
Detailed Example:
| Class | Frequency |
|---|
| 10-20 | 5 |
| 20-30 | 8 |
| 30-40 | 12 |
| 40-50 | 16 ← Modal class (highest frequency) |
| 50-60 | 10 |
$L=40$, $f_1=16$, $f_0=12$, $f_2=10$, $h=10$
$$\text{Mode} = 40 + \frac{16-12}{2(16)-12-10} \times 10 = 40 + \frac{4}{32-22} \times 10 = 40 + \frac{4}{10} \times 10 = 40 + 4 = \textbf{44}$$
3.4 Properties of Mode
- Can be used with any type of data including nominal (categorical)
- Not affected by extreme values
- Can be determined graphically using a histogram
- May be non-unique (bimodal/multimodal datasets)
- Can be used for open-ended classes (if mode is not in the open class)
Merits and Demerits of Mode
| Merits | Demerits |
|---|
| Easy to find | May not exist or may not be unique |
| Not affected by outliers | Not based on all observations |
| Applicable to categorical data | Cannot be algebraically manipulated |
| Can be found graphically | Unstable with small datasets |
PART 4: RELATIONSHIP AND COMPARISON
4.1 Empirical Relationship (Karl Pearson's Formula)
For a moderately skewed distribution:
$$\boxed{\text{Mode} = 3 \times \text{Median} - 2 \times \text{Mean}}$$
Or equivalently:
$$\text{Mean} - \text{Mode} = 3(\text{Mean} - \text{Median})$$
Example: If Mean = 50 and Median = 45:
Mode = 3(45) - 2(50) = 135 - 100 = 35
4.2 Position in Distributions
Symmetric (Normal) Distribution:
$$\text{Mean} = \text{Median} = \text{Mode}$$
Positively Skewed (Right-skewed):
$$\text{Mode} < \text{Median} < \text{Mean}$$
(Long tail on the right; mean is pulled up by high values)
Negatively Skewed (Left-skewed):
$$\text{Mean} < \text{Median} < \text{Mode}$$
(Long tail on the left; mean is pulled down by low values)
Negatively Skewed Symmetric Positively Skewed
___ ___ ___
/ \ / \ / \
/ \___ / \ ___/ \
Mean Med Mode Mean=Med=Mode Mode Med Mean
4.3 Complete Comparison Table
| Feature | Mean | Median | Mode |
|---|
| Definition | Arithmetic average | Middle value | Most frequent value |
| Formula basis | All values | Position | Frequency |
| Uses all values | Yes | No | No |
| Affected by outliers | Yes, heavily | No | No |
| Unique | Always | Always | Not always |
| Applicable data types | Interval, Ratio | Ordinal and above | Nominal and above |
| Open-ended classes | Cannot be used | Can be used | Can be used (if not in that class) |
| Graphical determination | No | Yes (Ogive) | Yes (Histogram) |
| Algebraic manipulation | Yes | Limited | No |
| Best for | Symmetric distributions | Skewed distributions | Categorical data |
PART 5: SPECIAL TOPICS
5.1 Trimmed Mean
A trimmed mean removes a fixed percentage of the smallest and largest values before computing the mean. This reduces the effect of outliers.
Example (10% trimmed mean): Remove the bottom 10% and top 10% of values, then compute the mean of the remaining 80%.
Used in: Olympic scoring (remove highest and lowest judge scores), economics (trimmed CPI).
5.2 Midrange
$$\text{Midrange} = \frac{\text{Maximum value} + \text{Minimum value}}{2}$$
Simple but very sensitive to outliers. Rarely used in practice.
5.3 When to Use Each Measure
| Data Situation | Best Measure | Reason |
|---|
| Normal/symmetric distribution | Mean | Uses all data, most precise |
| Skewed distribution (income, house prices) | Median | Not distorted by extremes |
| Categorical/nominal data (colors, brands) | Mode | Mean/Median not applicable |
| Data with outliers | Median | Resistant to extreme values |
| Rates/ratios (growth rates, speeds) | Geometric or Harmonic Mean | Appropriate for multiplicative data |
| Different importance of values | Weighted Mean | Accounts for unequal importance |
| Ordinal data (rankings, ratings) | Median | Preserves order meaning |
| Open-ended frequency distributions | Median or Mode | Mean requires all boundaries |
5.4 Real-World Applications
| Field | Measure Used | Application |
|---|
| Economics | Median | Median household income (avoids distortion by billionaires) |
| Education | Mean | Class average marks, GPA |
| Business | Mode | Most popular product size or color |
| Finance | Geometric Mean | Average investment returns over time |
| Engineering | Harmonic Mean | Average speed, efficiency ratios |
| Healthcare | Median | Median survival time in clinical trials |
| Sports | Mean | Batting average, points per game |
| Retail | Mode | Most purchased item |
5.5 Numerical Summary Example
Full dataset worked example:
Data: 12, 15, 18, 22, 22, 25, 28, 30, 35, 100 (n=10)
| Measure | Value | Calculation |
|---|
| Arithmetic Mean | 30.7 | 307/10 |
| Median | 23.5 | (22+25)/2 |
| Mode | 22 | Appears twice |
| Geometric Mean | 24.8 | $(12\times15\times...\times100)^{1/10}$ |
| Trimmed Mean (10%) | 24.6 | Remove 12 and 100, average remaining 8 |
Notice: The outlier 100 pulls the arithmetic mean up to 30.7, while the median (23.5) and trimmed mean (24.6) are far more representative of the typical value in this dataset.
Summary
A measure of central tendency represents the "center" of a dataset. The mean is mathematically powerful but vulnerable to outliers. The median is robust and reliable for skewed data. The mode is the only measure applicable to categorical data. The geometric and harmonic means serve specialized purposes with rates and ratios. Choosing the right measure depends entirely on the type of data, shape of distribution, and the purpose of analysis.