Answers:
- Mean = 69
- Median = 69
- Mode = {68, 70}
===============================================
Explanations:
To get the mean, you add up all of the values and then you divide by N, where N is the number of values in the list. In this case, you'll divide by N = 8.
Adding up all the values gets you 70+68+70+72+68+66+65+73 = 552. Dividing that over 8 then leads to the arithmetic mean of 552/8 = 69
-------
To find the median, you'll first sort the values from smallest to largest. You should have this set {65, 66, 68, 68, 70, 70, 72, 73} after sorting. Next, cross off the smallest and largest values to end up with this smaller set {66, 68, 68, 70, 70, 72}. We do this so we can locate the middle-most item.
Repeat the process of crossing off the smallest and largest items to get {68, 68, 70, 70}. Do so one more time and we get {68,70}.
The midpoint of those two values is (68+70)/2 = 138/2 = 69. The median is 69. The mean and median may not always be the same value.
--------
The mode is the most frequent value. In this case, we have 68 and 70 show up exactly twice for each unique value. This is the most compared to the other unique values that only show up exactly once.
It is possible to have more than one mode, as long those values are more frequent than the rest. We denote the mode as a set, so the mode is {68, 70}