Key Uses: Finding an average value for a dataset, predicting trends, or comparing groups.
Identify the middle value:
Example 1 (Odd dataset):
  Dataset: 6, 13, 67, 45, 2.
  Ranked: 2, 6, 13, 45, 67.
  Median = 13.  
Example 2 (Even dataset):
  Dataset: 6, 13, 67, 45, 2, 7.
  Ranked: 2, 6, 7, 13, 45, 67.
  Median = ((7 + 13) \div 2 = 10).  
Key Uses: Handling skewed data to represent the "middle" value.
Identify the value(s) with the highest frequency.
Example 1 (Single mode):
  Balloon colors: 18 red, 12 blue, 24 orange, 25 purple, 21 green.
  Mode = Purple.  
Example 2 (No clear mode):
  Speeds: 40, 34, 42, 38, 41, 50, 48, 49, 33, 47.  
Key Uses: Identifying the most common occurrences, such as customer preferences or frequently observed trends.
| Measure    | Best for                                       | Limitations                                  |
|-----------------|---------------------------------------------------|------------------------------------------------|
| Mean       | Evenly distributed data, detailed comparisons.    | Affected by extreme values (outliers).         |
| Median     | Skewed or non-symmetrical data.                   | May not fully represent all data points.       |
| Mode       | Categorical data or frequent occurrences.         | Less useful with no repetition or multiple modes. |  
By understanding these measures, you can better interpret and analyze data to make informed decisions!