Welcome to Data Presentation and Interpretation
Hello and welcome to one of the most practical and useful topics in AS Mathematics (Unit AS 2: Applied Mathematics)! Whether you are tracking the speed of cars, analyzing medical test scores, or predicting the weather, data is everywhere. But raw numbers on their own can look like a confusing mess. In this chapter, you will learn how to organize, summarize, and visualize data so that it tells a clear story.
Don't worry if you haven't looked at statistics in a while or find formulas a bit intimidating. We will break every concept down into small, bite-sized steps with clear examples, memory tricks, and common pitfalls to avoid. Let's dive in!
1. Measures of Location (Central Tendency)
A measure of location gives us a single central value that represents the middle or typical value of a data set. The three main measures you need to know are the mean, the median, and the mode.
The Mean (\( \bar{x} \))
The mean is the arithmetic average of all numbers. To find it, add up all the values and divide by the total number of items.
For raw data:
\( \bar{x} = \frac{\sum x}{n} \)
where \( \sum x \) means "the sum of all \( x \) values" and \( n \) is the total count of data values.
For data given in a frequency table:
\( \bar{x} = \frac{\sum f x}{\sum f} \) or \( \bar{x} = \frac{\sum f x}{n} \)
where \( f \) is the frequency of each value, and \( x \) is the data value (or the midpoint if the data is grouped into classes).
Real-World Analogy: Imagine sharing a restaurant bill equally among friends. Even if one person ordered a tiny salad and someone else ordered a giant steak, the mean gives the amount everyone would pay if the total cost were shared equally.
The Median (\( Q_2 \))
The median is the middle value when the data is written in order from smallest to largest. It splits the data into two equal halves (50% below and 50% above).
For discrete, ordered data of size \( n \):
- If \( n \) is odd, the median is at position \( \frac{n + 1}{2} \).
- If \( n \) is even, the median is the midpoint of the two middle values at positions \( \frac{n}{2} \) and \( \frac{n}{2} + 1 \).
The Mode
The mode is simply the most frequently occurring value in a data set. A set can have one mode (unimodal), two modes (bimodal), or no mode at all if every value appears with the same frequency. For grouped data, we talk about the modal class (the class interval with the highest frequency).
Comparing Mean, Median, and Mode
• Mean: Uses every single piece of data, making it very sensitive. However, it is heavily distorted by extreme values (outliers).
• Median: Not affected by extreme outliers! Very helpful when dealing with skewed distributions like house prices or salaries.
• Mode: Easy to find and can be used for non-numerical (qualitative) data, but it ignores the majority of the data points.
Key Takeaway for Section 1: Use the mean when data is symmetric and has no extreme values. Use the median when your data has extreme outliers or is heavily skewed.
2. Measures of Spread (Dispersion)
Knowing the center of a data set is only half the story. Two classes might have the exact same mean test score of \( 65\% \), but in Class A everyone scored between \( 60\% \) and \( 70\% \), while in Class B scores ranged from \( 10\% \) to \( 100\% \). Measures of spread tell us how consistent or spread out the numbers are.
Range and Interquartile Range (IQR)
• Range: \( \text{Range} = \text{Maximum value} - \text{Minimum value} \). Simple to find, but easily distorted by a single extreme value.
• Lower Quartile (\( Q_1 \)): The value \( 25\% \) of the way into the ordered data.
• Upper Quartile (\( Q_3 \)): The value \( 75\% \) of the way into the ordered data.
• Interquartile Range (\( \text{IQR} \)):
\( \text{IQR} = Q_3 - Q_1 \)
The IQR measures the spread of the middle \( 50\% \) of the data and is resistant to outliers.
Variance (\( \sigma^2 \) or \( s^2 \)) and Standard Deviation (\( \sigma \) or \( s \))
Standard deviation is the most important measure of spread in statistics. It tells you the average distance that data points lie from the mean.
For raw data:
\( \text{Variance} = \sigma^2 = \frac{\sum (x - \bar{x})^2}{n} = \frac{\sum x^2}{n} - \bar{x}^2 \)
\( \text{Standard Deviation} = \sigma = \sqrt{\frac{\sum x^2}{n} - \bar{x}^2} \)
For frequency data:
\( \sigma = \sqrt{\frac{\sum f x^2}{\sum f} - \bar{x}^2} \)
Memory Trick for Standard Deviation:
Think of the formula as: "The mean of the squares minus the square of the mean".
1. Find the mean of \( x^2 \): \( \frac{\sum x^2}{n} \)
2. Subtract the square of the mean: \( - (\bar{x})^2 \)
3. Take the square root: \( \sqrt{\dots} \)
Common Mistake: Do not confuse \( \sum x^2 \) with \( (\sum x)^2 \)!
• \( \sum x^2 \) means you square each individual number first, then add them up.
• \( (\sum x)^2 \) means you add all the numbers first, then square the total sum.
Key Takeaway for Section 2: Standard deviation uses all values and pairs naturally with the mean. The IQR ignores extremes and pairs naturally with the median.
3. Linear Coding
Sometimes raw numbers are very large or have many decimal places (for example, temperatures recorded as \( 100.2, 100.5, 100.8 \)). Coding is a mathematical shortcut where we transform data using a simple linear equation \( y = \frac{x - a}{b} \) or \( y = ax + b \) to make calculations easier.
Rules for Coded Data
Suppose our original variable is \( x \) and our new coded variable is \( y = \frac{x - a}{b} \):
• Effect on the Mean: The mean is affected by BOTH addition/subtraction and multiplication/division.
\( \bar{y} = \frac{\bar{x} - a}{b} \implies \bar{x} = b\bar{y} + a \)
• Effect on Standard Deviation: Standard deviation measures spread, so adding or subtracting a constant shifts all points equally without changing how far apart they are. Therefore, it is ONLY affected by multiplication/division!
\( \sigma_y = \frac{\sigma_x}{b} \implies \sigma_x = b \times \sigma_y \) (where \( b > 0 \))
• Effect on Variance:
\( \text{Var}(y) = \frac{\text{Var}(x)}{b^2} \implies \text{Var}(x) = b^2 \times \text{Var}(y) \)
Everyday Analogy: Imagine everyone in your class stands on a \( 10\text{ cm} \) wooden block. Everyone's average height increases by \( 10\text{ cm} \), but the height differences between students stay exactly the same!
Key Takeaway for Section 3:
Adding/subtracting a number changes the mean, but leaves the standard deviation unchanged.
Multiplying/dividing by a number scales both the mean and the standard deviation.
4. Outliers and Data Cleaning
An outlier is an extreme value that lies significantly far away from the main cluster of data. Outliers can occur naturally, or they might be errors caused by faulty equipment or mistyped entries (called data anomalies).
How to Identify Outliers
In your exam, you will usually be given a specific rule to test for outliers. The two standard definitions are:
1. The Quartile Rule (IQR method):
A value \( x \) is an outlier if:
\( x < Q_1 - 1.5 \times \text{IQR} \)
or
\( x > Q_3 + 1.5 \times \text{IQR} \)
2. The Standard Deviation Rule:
A value \( x \) is an outlier if it lies more than 2 (or sometimes 3) standard deviations away from the mean:
\( x < \bar{x} - 2\sigma \)
or
\( x > \bar{x} + 2\sigma \)
Cleaning Data: The process of identifying and removing anomalous errors from a data set is known as cleaning the data.
Key Takeaway for Section 4: Always state the boundary values (e.g. \( Q_1 - 1.5 \times \text{IQR} \) and \( Q_3 + 1.5 \times \text{IQR} \)) in your working before concluding whether a value is an outlier.
5. Visualising Data: Box Plots and Histograms
Box-and-Whisker Plots (Box Plots)
A box plot is a clean visual representation of a five-number summary: Minimum, Lower Quartile (\( Q_1 \)), Median (\( Q_2 \)), Upper Quartile (\( Q_3 \)), and Maximum.
• The "box" shows the middle \( 50\% \) of the data (from \( Q_1 \) to \( Q_3 \)), with a vertical line drawn at the median \( Q_2 \).
• The "whiskers" extend out to the lowest and highest values that are not outliers.
• Any outliers are plotted as individual separate points (usually marked with an \( \times \) or a dot).
Histograms
Histograms are used for continuous data, especially when class intervals have unequal widths.
• CRITICAL RULE: In a histogram, the area of the bar represents the frequency, not the height!
• The vertical axis is always Frequency Density:
\( \text{Frequency Density} = \frac{\text{Frequency}}{\text{Class Width}} \)
• This means:
\( \text{Frequency} = \text{Frequency Density} \times \text{Class Width} \)
Step-by-Step for Continuous Classes with Gaps:
If data is recorded to the nearest whole number (e.g., ages \( 20 - 24, 25 - 29 \)), find the true class boundaries first:
• Class \( 20 - 24 \) actually goes from \( 19.5 \) to \( 24.5 \), so \( \text{Class Width} = 24.5 - 19.5 = 5 \).
• Class \( 25 - 29 \) goes from \( 24.5 \) to \( 29.5 \), so \( \text{Class Width} = 29.5 - 24.5 = 5 \).
Key Takeaway for Section 5: When drawing or reading a histogram, never use raw frequency on the vertical axis if class widths are unequal—always calculate and use frequency density.
6. Skewness and Comparing Distributions
Understanding Skewness
Skewness describes the symmetry (or lack of symmetry) in the shape of a data distribution.
• Symmetrical Distribution:
The data is evenly balanced around the center.
\( \text{Mean} \approx \text{Median} \approx \text{Mode} \)
\( Q_3 - Q_2 \approx Q_2 - Q_1 \)
• Positive Skew (Right-skewed):
The long tail stretches out to the right (higher values).
\( \text{Mode} < \text{Median} < \text{Mean} \)
\( Q_3 - Q_2 > Q_2 - Q_1 \)
• Negative Skew (Left-skewed):
The long tail stretches out to the left (lower values).
\( \text{Mean} < \text{Median} < \text{Mode} \)
\( Q_3 - Q_2 < Q_2 - Q_1 \)
Memory Trick for Skewness: Look at the toes on your left and right feet!
• Your right foot has the big toe on the left and a long tail of small toes to the right — that's positive skew.
• Your left foot has the long tail of small toes pointing to the left — that's negative skew.
How to Compare Two Distributions in an Exam
When asked to compare two data sets (for instance, using two box plots), always make two clear statements in the context of the question:
1. Compare a measure of average: State which group has a higher median (or mean) and what that means in context.
Example: "Group A has a higher median test score (\( 72\% \)) than Group B (\( 58\% \)), indicating that students in Group A generally performed better."
2. Compare a measure of spread: State which group has a larger IQR (or standard deviation) and comment on consistency.
Example: "Group B has a smaller IQR (\( 8\% \)) than Group A (\( 18\% \)), meaning scores in Group B were more consistent."
Key Takeaway for Section 6: Always quote values for the median and IQR/standard deviation, and always link your answer back to the real-life context of the question!
7. Quick Review & Common Exam Pitfalls
• Rounding Too Early: Keep intermediate values stored in your calculator memory. Rounding early can lead to inaccurate answers in standard deviation calculations.
• Midpoints in Grouped Tables: Double check your class boundaries before calculating midpoints.
• Units: Don't forget to include units (e.g. \( \text{cm}, \text{kg}, \text{seconds} \)) when giving final answers for mean, standard deviation, and IQR. Variance is measured in units squared (\( \text{units}^2 \)).
• Context Matters: Never just write "Group A is bigger". Always write "The median salary for Company A is greater than Company B".
You now have a complete toolkit for presenting and interpreting data. Practice applying these formulas and drawing clear diagrams, and you will do brilliantly on this section of your AS examination!