In statistics, a measure of central tendency is a single value that attempts to describe a set of data by identifying the central position within that set of data. As such, measures of central tendency are sometimes called measures of central location. They are also classed as summary statistics. The mean, median, and mode are the most common measures of central tendency.
The mean, often called the average, is the most common measure of central tendency. It is calculated by summing all the values in a dataset and dividing by the total number of values.
For a dataset with n observations (x₁, x₂, …, xₙ), the formula for the sample mean (denoted as x̄) is:
x̄ = (Σxᵢ) / n
Where: - Σxᵢ represents the sum of all the individual values in the dataset. - n is the total number of values in the dataset.
Example Calculation:
Consider the following dataset of exam scores: 85, 92, 78, 88, 90.
To find the mean: 1. Sum the values: 85 + 92 + 78 + 88 + 90 = 433 2. Divide by the number of values: 433 / 5 = 86.6
So, the mean exam score is 86.6.
It’s important to note that the mean can be sensitive to outliers (extremely high or low values), which can sometimes provide a skewed representation of the “typical” value.
The median is the middle value in a dataset that has been arranged in ascending or descending order. It is a good measure of central tendency to use when the data is skewed by outliers.
To find the median, you must first order the data.
For an odd number of observations (n): The
median is the middle value. The formula to find the position of the
median is: (n + 1) / 2
For an even number of observations (n): The
median is the average of the two middle values. The positions of the two
middle values are: n / 2 and
(n / 2) + 1
Example Calculation (Odd number of observations):
Using the exam scores: 78, 85, 88, 90, 92.
Example Calculation (Even number of observations):
Let’s add one more score: 78, 85, 88, 90, 92, 95.
The mode is the value that appears most frequently in a dataset. A dataset can have one mode (unimodal), more than one mode (multimodal), or no mode at all if all values appear with the same frequency.
There is no specific mathematical formula to calculate the mode. It is found by identifying the value(s) that occur most often in the dataset.
Example Calculation:
Consider the following dataset of t-shirt sizes sold: S, M, L, M, XL, M, S.
To find the mode: 1. Count the frequency of each value: * S: 2 * M: 3 * L: 1 * XL: 1 2. The value with the highest frequency is M. 3. The mode is M.
```