1
Project Sec: Measures of Central Tendency
November 2025
This project explores the three fundamental MEASURES OF CENTRAL TENDENCY
in business statistics: the Arithmetic Mean, the Median, and the Mode. These descriptive
statistics are essential for summarizing large datasets, providing a single, representative value
that aids in crucial business decision-making, from forecasting sales to analyzing compensation.
We define each measure, present their mathematical formulas for both ungrouped and grouped
data, and discuss their respective suitability in various analytical scenarios.
2
Contents
1 Introduction to Descriptive Statistics 4
1.1 Importance of Central Tendency in Business . . . . . . . . . . . . . . . . . . . . 4
2 The Arithmetic Mean (x̄) 4
2.1 Mean for Ungrouped Data . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
2.2 Mean for Grouped Data . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
3 The Median (Me ) 4
3.1 Finding the Median . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
3.2 Median for Continuous Frequency Distribution . . . . . . . . . . . . . . . . . . . 5
3.3 Business Use Case: Income Analysis . . . . . . . . . . . . . . . . . . . . . . . . 5
4 The Mode (Mo ) 5
4.1 Identifying the Mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
4.2 Business Use Case: Product Management . . . . . . . . . . . . . . . . . . . . . . 6
5 Comparison and Selection 6
3
1 Introduction to Descriptive Statistics
Statistics is vital for business intelligence, providing tools to organize, analyze, and interpret
data. Descriptive statistics specifically focuses on summarizing the main features of a collection
of data. Among these, the measures of central tendency are paramount, as they provide an
estimate of a typical or center value around which data points cluster.
1.1 Importance of Central Tendency in Business
Identifying the central location of a data distribution helps businesses understand typical per-
formance. For instance, knowing the typical customer spend, average production time, or most
frequent product defect allows managers to set realistic targets, optimize resources, and improve
processes. We examine the three main measures in detail.
2 The Arithmetic Mean (x̄)
The Arithmetic Mean, often simply called the ”average,” is the most widely used measure of
central tendency. It is calculated by dividing the sum of all values by the total number of
observations.
2.1 Mean for Ungrouped Data
For a sample of n individual observations (x1 , x2 , . . . , xn ), the sample mean (x̄) is calculated
using the following formula: Pn
xi
x̄ = i=1
n
The mean is algebraically versatile and uses every value in the dataset, but it is highly sensitive
to extreme values, or outliers.
2.2 Mean for Grouped Data
When data is classified into a frequency distribution (grouped data), the mean is calculated
using the midpoint (xm ) of each class interval and its corresponding frequency (f ). This method
treats the midpoint as the representative value for all data within that class.
P
f · xm
x̄ = P
f
P
Here, f is the total number of observations, N .
3 The Median (Me )
The Median is a positional measure defined as the middle value when a dataset is arranged in
ascending or descending order. It effectively divides the data into two equal halves.
3.1 Finding the Median
The procedure depends on the number of observations (n):
th
◦ Odd n: The median is the value at the n+12
position.
n th
◦ Even n: The median is the average of the two middle values, found at the 2
and
n
th
2
+ 1 positions.
4
3.2 Median for Continuous Frequency Distribution
For data grouped into continuous classes, the median is calculated using interpolation within
th
the median class (the class containing the N2 observation).
!
N
− C
Me = L + 2 ×h
f
where:
• L: Lower boundary of the median class.
• N : Total frequency ( f ).
P
• C: Cumulative frequency of the class preceding the median class.
• f : Frequency of the median class.
• h: Size of the median class interval.
3.3 Business Use Case: Income Analysis
The median is invaluable in analyzing skewed distributions, such as employee income. Since
a few extremely high executive salaries can heavily distort the arithmetic mean, the median
provides a more realistic measure of the typical income for the majority of the workforce.
Figure 1: Positively Skewed Distribution where the Mean is pulled towards outliers (e.g., high incomes),
making the Median a better measure of center.
4 The Mode (Mo )
The MODE is defined as the value that appears most frequently in a dataset. Unlike the mean
and median, the mode can be used for nominal (categorical) data, where values cannot be
ordered or averaged.
5
4.1 Identifying the Mode
The mode is found simply by counting frequencies. A distribution can be:
1. Unimodal: Has a single mode.
2. Bimodal: Has two modes.
3. Multimodal: Has more than two modes.
4. No Mode: If all values occur with the same frequency.
4.2 Business Use Case: Product Management
In business, the mode is highly practical for inventory and logistics. A clothing store, for
example, uses the mode of shirt sizes sold to determine which size to stock the most, ensuring
supply meets the highest level of customer demand.
Table 1: Retail Sales Frequency by Product Size
Product Size Frequency (Units) Category
Small (S) 150 Non-Modal
Medium (M) 320 Modal Class
Large (L) 250 Non-Modal
Extra Large (XL) 80 Non-Modal
In Table 1, the Mode is Medium (M), representing the optimal size for mass production
and stocking.
5 Comparison and Selection
The choice of the best measure of central tendency depends on the nature of the data and the
objective of the analysis:
• Mean: Best for symmetric, non-skewed data and when further algebraic manipulation is
required.
• Median: Best for skewed data or when the distribution contains extreme outliers, as it is
a robust measure.
• Mode: Best for qualitative or categorical data, or for identifying the most popular category
or most common characteristic.
For comprehensive business intelligence, analysts often report all three measures, as their
relationship (e.g., Mean > Median > Mode) can indicate the degree and direction of skewness
in the underlying data distribution.