1. Introduction
Measures of Central Tendency are statistical tools used to identify the central or typical value in a dataset. These measures help summarize large amounts of data by finding a single representative value. The three main measures of central tendency are:
- Mean (Average) – The sum of all values divided by the number of values.
- Median – The middle value when data is arranged in ascending order.
- Mode – The most frequently occurring value in a dataset.
Each of these measures has unique properties and is used in different business and analytical scenarios.
2. Mean (Arithmetic Mean)
Definition
The mean (or arithmetic average) is calculated by adding all values in a dataset and dividing by the number of observations. It is the most commonly used measure of central tendency.
Formula
For a dataset with n observations:

Where:
- Xi = Each individual value
- n = Total number of observations
Example
A company wants to determine the average monthly sales for the past six months:
| Month | Sales (₹) |
|---|---|
| January | 50 |
| February | 60 |
| March | 55 |
| April | 65 |
| May | 70 |
| June | 75 |

Thus, the average monthly sales = ₹62,500.
Advantages of Mean
✔ Simple to calculate and widely used.
✔ Considers all data points, making it a reliable indicator of central tendency.
✔ Useful for financial analysis, sales forecasting, and economic trends.
Disadvantages of Mean
❌ Sensitive to extreme values (outliers) – If one value is significantly higher or lower than others, it can distort the mean.
❌ Not always a representative value – If data is highly skewed, the mean may not reflect the actual central value.
3. Median
Definition
The median is the middle value in a dataset when arranged in ascending order. It is not affected by outliers, making it useful for skewed data.
Steps to Find the Median
- Arrange the data in ascending order.
- If n is odd, the median is the middle value.
- If n is even, the median is the average of the two middle values.
Formula
For an ordered dataset:
- If n is odd: Median=Middle Value
- If n is even: Median =

Example
Odd Number of Observations
A company records daily customer footfall for 7 days:
| Day | Customers |
|---|---|
| Monday | 42 |
| Tuesday | 50 |
| Wednesday | 55 |
| Thursday | 60 |
| Friday | 65 |
| Saturday | 70 |
| Sunday | 75 |
Arranging in ascending order: 42, 50, 55, 60, 65, 70, 75 Median=60
Even Number of Observations
If customer footfall was recorded for 8 days:
| Day | Customers |
|---|---|
| Monday | 42 |
| Tuesday | 50 |
| Wednesday | 55 |
| Thursday | 60 |
| Friday | 65 |
| Saturday | 70 |
| Sunday | 75 |
| Monday | 80 |
Ordered: 42, 50, 55, 60, 65, 70, 75, 80

Advantages of Median
✔ Not affected by extreme values (outliers), making it useful for skewed distributions.
✔ Better for ordinal data, such as income levels or customer satisfaction ratings.
Disadvantages of Median
❌ Ignores actual values, only considering the middle position.
❌ Not suitable for calculations requiring all data points, such as financial forecasting.
4. Mode
Definition
The mode is the most frequently occurring value in a dataset. It is useful for categorical data (e.g., most preferred product, most common customer complaint).
Steps to Find the Mode
- Identify the value that appears most frequently.
- If multiple values appear with the same highest frequency, the data is bimodal (two modes) or multimodal (more than two modes).
Example
A store records the most frequently sold shoe sizes in a week:
| Shoe Size | Frequency |
|---|---|
| 6 | 5 |
| 7 | 8 |
| 8 | 12 |
| 9 | 10 |
| 10 | 12 |
Here, sizes 8 and 10 appear most frequently (12 times each). Mode = 8,10
This is a bimodal distribution.
Advantages of Mode
✔ Best for categorical data (e.g., most popular brand, most common complaint).
✔ Easy to understand and interpret.
✔ Not affected by extreme values, making it reliable for frequency-based analysis.
Disadvantages of Mode
❌ May not exist or may have multiple values, making it less stable.
❌ Not useful for continuous data, where every value is unique.
5. Comparison of Mean, Median, and Mode
| Measure | Formula | Best Used For | Sensitivity to Outliers |
|---|---|---|---|
| Mean | Sum of all values ÷ Number of values | Financial analysis, business performance, forecasting | High |
| Median | Middle value (or avg. of two middle values) | Income distribution, skewed data, customer ratings | Low |
| Mode | Most frequently occurring value | Market research, categorical data, frequency analysis | None |
6. Choosing the Right Measure
- Use the Mean when data is normally distributed and has no extreme outliers.
- Use the Median when data is skewed, such as income levels or real estate prices.
- Use the Mode for categorical data where the most frequent value is important.
7. Conclusion
The measures of central tendency—Mean, Median, and Mode—play a crucial role in business statistics by summarizing large datasets into a single representative value. While the mean is widely used due to its simplicity, the median provides a better measure for skewed data, and the mode is effective for categorical analysis. Selecting the right measure depends on data type, distribution, and business application.