No history yet

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.

Xˉ=Xn\bar{X} = \frac{\sum X}{n}

For our student scores, the calculation would be:

Xˉ=70+85+90+65+805=3905=78\bar{X} = \frac{70 + 85 + 90 + 65 + 80}{5} = \frac{390}{5} = 78

For more complex datasets, the short-cut method can save time. It involves choosing an 'assumed mean' (AA) and then calculating the average of the deviations from that assumed value.

Xˉ=A+Dn\bar{X} = A + \frac{\sum D}{n}

Let's use the same scores and pick an assumed mean, A=80A = 80. We create a table to stay organised.

Score (X)Deviation (D = X - 80)
70-10
855
9010
65-15
800
TotalD=10\sum D = -10
Xˉ=80+105=802=78\bar{X} = 80 + \frac{-10}{5} = 80 - 2 = 78

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, ff) in each. For calculations, we use the mid-point (xx) 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-1261223
127-1351315
136-1441409
145-15314912
154-1621585
163-1711674
172-1801762
Totalf=40\sum f = 40

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.

Xˉ=fxf\bar{X} = \frac{\sum fx}{\sum f}

For our example, the sum of fxfx would be (122×3)+(131×5)+...+(176×2)=5860(122 \times 3) + (131 \times 5) + ... + (176 \times 2) = 5860. The total frequency is 40. So, Xˉ=5860/40=146.5\bar{X} = 5860 / 40 = 146.5. 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 (AA), usually the mid-point of the class with the highest frequency, and calculate a new variable, uu.

Xˉ=A+(fuf)×h\bar{X} = A + \left(\frac{\sum fu}{\sum f}\right) \times h

Let's use our wage data. The highest frequency is 12, so we'll choose A=149A = 149. The class width, hh, is 9. We can now build a table to find fu\sum fu.

xfu = (x - 149)/9fu
1223-3-9
1315-2-10
1409-1-9
1491200
158515
167428
176236
Total40-9

Now, we just plug our totals into the formula.

Xˉ=149+(940)×9\bar{X} = 149 + \left(\frac{-9}{40}\right) \times 9

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.

(XXˉ)=0\sum (X - \bar{X}) = 0

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.

(XXˉ)2 is a minimum\sum (X - \bar{X})^2 \text{ is a minimum}

Finally, we have the Weighted Arithmetic Mean. This is used when different data points have different levels of importance. Each value (XX) is assigned a weight (ww), and values with higher weights contribute more to the final mean.

Xˉw=wXw\bar{X}_w = \frac{\sum wX}{\sum w}
Quiz Questions 1/5

What does the arithmetic mean represent in a dataset?

Quiz Questions 2/5

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.