Measures of Central Tendency for KPK Board
Arithmetic Mean Mastery
The Arithmetic Mean
The arithmetic mean, often just called the average, is the most common way to find the center of a dataset. It gives us a single value that represents the typical or central value of all the observations. Think of it as the balancing point of your data.
The mean is the arithmetic average of all scores in the data set.
Calculating the Mean
How we calculate the mean depends on how the data is presented. We'll look at two main scenarios: ungrouped data and grouped data.
For ungrouped data, we have a simple list of individual values. Imagine you have the test scores of five students: 70, 85, 90, 65, and 80.
To find the mean, we use the direct method. This is the one you probably know already.
For our student scores, the calculation would be:
For more complex datasets, the short-cut method can save time. It involves choosing an 'assumed mean' () and then calculating the average of the deviations from that assumed value.
Let's use the same scores and pick an assumed mean, . We create a table to stay organised.
| Score (X) | Deviation (D = X - 80) |
|---|---|
| 70 | -10 |
| 85 | 5 |
| 90 | 10 |
| 65 | -15 |
| 80 | 0 |
| Total |
Mean from Grouped Data
When data is grouped into a frequency distribution, we don't have individual values anymore. Instead, we have classes or groups and the number of observations (frequency, ) in each. For calculations, we use the mid-point () of each class interval to represent all the values in that class.
Let's say we have data on the daily wages of 50 workers.
| Wages (Class Interval) | Mid-point (x) | No. of Workers (f) |
|---|---|---|
| 118-126 | 122 | 3 |
| 127-135 | 131 | 5 |
| 136-144 | 140 | 9 |
| 145-153 | 149 | 12 |
| 154-162 | 158 | 5 |
| 163-171 | 167 | 4 |
| 172-180 | 176 | 2 |
| Total |
The direct method for grouped data is similar to the one for ungrouped data, but we must account for the frequency of each mid-point.
For our example, the sum of would be . The total frequency is 40. So, . The average daily wage is $146.50.
The coding method, or step-deviation method, simplifies the maths even more, especially when class intervals are equal. We pick an assumed mean (), usually the mid-point of the class with the highest frequency, and calculate a new variable, .
Let's use our wage data. The highest frequency is 12, so we'll choose . The class width, , is 9. We can now build a table to find .
| x | f | u = (x - 149)/9 | fu |
|---|---|---|---|
| 122 | 3 | -3 | -9 |
| 131 | 5 | -2 | -10 |
| 140 | 9 | -1 | -9 |
| 149 | 12 | 0 | 0 |
| 158 | 5 | 1 | 5 |
| 167 | 4 | 2 | 8 |
| 176 | 2 | 3 | 6 |
| Total | 40 | -9 |
Now, we just plug our totals into the formula.
Key Properties of the Mean
The arithmetic mean has some unique mathematical properties that make it very useful in statistics.
First, the sum of the deviations of all values from their arithmetic mean is always zero. This is its balancing property.
Second, the sum of the squared deviations of the values from the mean is a minimum. This means if you were to pick any other number and calculate the sum of squared differences from it, the result would be larger than the one you get using the mean. This is called the principle of least squares and is a foundation for more advanced statistics.
Finally, we have the Weighted Arithmetic Mean. This is used when different data points have different levels of importance. Each value () is assigned a weight (), and values with higher weights contribute more to the final mean.
What does the arithmetic mean represent in a dataset?
For a dataset of student marks {10, 15, 20, 25, 30}, what is the arithmetic mean?
Understanding these different methods for calculating the mean and its core properties is fundamental for statistical analysis.