Averages from tables use frequency information to calculate summary statistics without rewriting the full data set. The key idea is that each data value may occur several times, so frequency tells you how often to count it. By using frequencies carefully, you can find the mode, median, mean, and range efficiently while avoiding common mistakes such as confusing a data value with its frequency.
Mode vs frequency is a crucial distinction. The mode is the data value with the highest frequency, whereas the frequency is just the count of how many times a value occurs.
Median position vs median value should not be confused. The position tells you where to look in the ordered data, but the median itself is the data value found at that position, or the average of two central values when needed.
Mean from a list vs mean from a table are conceptually the same, but the table method is more efficient. In a list you add every value directly, while in a table you use to rebuild the total without expanding the full list.
Range uses data values, not frequencies. A very large frequency does not make the range larger; only a more extreme minimum or maximum data value changes the range.
| Feature | Mode | Median | Mean | | --- | --- | --- | --- | | What it describes | Most common value | Middle value by position | Balance point of data | | How table is used | Find largest | Use cumulative frequency | Calculate | | Sensitivity | Depends on repetition | Depends on order and position | Depends on all values | | Typical pitfall | Giving the frequency instead | Forgetting middle position | Forgetting to multiply by frequency |
| Quantity in table | Symbol | Role | | --- | --- | --- | | Data value | | The actual recorded outcome | | Frequency | | How many times occurs | | Product | | Contribution of row to total sum | | Total frequency | or | Number of data items overall |