Construct The Cumulative Frequency Distribution For The Given Data
How to Construct a Cumulative Frequency Distribution From Raw Data
You're staring at a list of numbers — maybe test scores, wait times, or measurements — and you need to make sense of it all. Consider this: looking at raw data is like trying to read a book where every word is printed on a separate page. You can do it, but why would you want to?
That's exactly the problem cumulative frequency distributions solve. In practice, they transform a jumble of individual values into something you can actually see — a shape, a pattern, a story about what's typical and what's unusual. And once you know how to build one, you'll wonder how you ever analyzed data without this tool in your back pocket.
Let me walk you through everything you need to know.
What Is a Cumulative Frequency Distribution?
A cumulative frequency distribution (often abbreviated as CFD) shows how many observations fall at or below* each point in your data, rather than counting how many fall within each individual class interval.
Think about it this way. If you have exam scores, a regular frequency distribution tells you how many students scored between 60–70, how many between 70–80, and so on. A cumulative frequency distribution tells you something different: how many students scored 70 or lower, how many scored 80 or lower, how many scored 90 or lower.
The "cumulative" part means you keep adding. Each class interval's cumulative total includes all the counts from the intervals below it. That's the whole idea — you're building up from the bottom.
Less Than vs. More Than: Two Types
Before we go further, you should know there are actually two ways to express cumulative frequency:
- Less than type: You count how many values fall less than* a certain upper boundary. This is the most common approach.
- More than type: You count how many values fall greater than* a certain lower boundary. This builds downward instead of upward.
Both give you the same information, just presented from different directions. Most textbooks and real-world applications use the less than approach, so that's what we'll focus on.
Why Does This Matter?
Here's what most people miss about cumulative frequency distributions: they're not just an academic exercise. They show up constantly in real analysis.
When a company looks at delivery times and wants to know what percentage of orders arrive within two days, they're implicitly asking for a cumulative frequency answer. Also, when a teacher curves an exam, cumulative frequency tells them exactly what score corresponds to the 90th percentile. When a doctor reviews a child's growth chart, they're interpreting cumulative data — showing where that child falls relative to all children the same age.
Beyond interpretation, cumulative frequency distributions lead directly to percentiles, percent point functions, and cumulative distribution functions used in statistics, quality control, and probability. Understanding how to build one gives you the foundation for much more advanced work.
How to Construct a Cumulative Frequency Distribution: Step by Step
Let's walk through the process with a concrete example. Say you have the following dataset representing the number of hours 30 students spent studying for an exam:
12, 15, 18, 22, 25, 27, 14, 19, 21, 24
26, 28, 30, 16, 17, 23, 20, 29, 31, 13
22, 25, 27, 19, 24, 26, 28, 15, 18, 21
Step 1: Organize Your Raw Data
First, sort the data in ascending order. This is non-negotiable — you cannot construct a cumulative frequency distribution from unsorted data. Here's what our sorted dataset looks like:
12, 13, 14, 15, 15, 16, 17, 18, 18, 19
19, 20, 21, 21, 22, 22, 23, 24, 24, 25
25, 26, 26, 27, 27, 28, 28, 29, 30, 31
Count to confirm you still have 30 observations. One lost value can throw off your entire distribution.
Step 2: Determine Your Class Intervals
Decide how many classes you want and what width each class should have. Worth adding: there's no universal rule here, but a common approach is the Sturges formula, which suggests using approximately 1 + 3. 3 × log(n) classes, where n is your number of observations.
For 30 data points: 1 + 3.3 × log(30) ≈ 1 + 3.Practically speaking, 3 × 1. 48 ≈ 5.88. So roughly 6 classes.
Your range is 31 − 12 = 19. On the flip side, dividing by 6 classes gives about 3. 17, so we'll use a class width of 5 (which is cleaner and more readable).
Our class intervals:
Want to learn more? We recommend highest common factor of 24 and 56 and the more you read the more you for further reading.
- 10–14
- 15–19
- 20–24
- 25–29
- 30–34
Notice I've started slightly below the minimum value (12) and ended above the maximum (31). This keeps all your data contained within the intervals.
Step 3: Count the Frequency for Each Class
Go through your sorted data and count how many values fall into each class interval.
| Class Interval | Tally | Frequency |
|---|---|---|
| 10–14 | ||
| 15–19 | ||
| 20–24 | ||
| 25–29 | ||
| 30–34 |
Double-check: 3 + 8 + 10 + 8 + 1 = 30. That matches our total.
Step 4: Calculate the Cumulative Frequency
Now the main event. For each class interval, add up all frequencies from the beginning up to and including that class.
| Class Interval | Frequency | Cumulative Frequency |
|---|---|---|
| Less than 15 | 3 | 3 |
| Less than 20 | 8 | 3 + 8 = 11 |
| Less than 25 | 10 | 11 + 10 = 21 |
| Less than 30 | 8 | 21 + 8 = 29 |
| Less than 35 | 1 | 29 + 1 = 30 |
Notice the convention: we express each cumulative frequency as "less than" the upper boundary of the class. "Less than
15" means we're counting all values from 10 up to (but not including) 15. This "less than" convention is standard in cumulative frequency tables.
The final cumulative frequency will always equal your total number of observations (n = 30), which serves as a nice built-in check for errors.
Step 5: Interpret Your Cumulative Frequency Distribution
Now you have a complete cumulative frequency distribution. But what can you actually do with it? Quite a lot, actually.
Finding the median: The median is the middle value. With 30 observations, the median is the average of the 15th and 16th values. Looking at your cumulative frequencies, the 15th and 16th values both fall in the "less than 25" class (since cumulative frequency reaches 21 at that point). This tells you the median is somewhere between 20 and 24.
Finding percentiles: Want to know the 70th percentile? Multiply 0.70 × 30 = 21. Find where cumulative frequency first reaches or exceeds 21. That happens in the "less than 25" class, meaning the 70th percentile is between 20 and 24.
Drawing an ogive: The cumulative frequency distribution is the foundation for an ogive (a cumulative frequency graph). You'd plot the upper boundary of each class on the x-axis and the cumulative frequency on the y-axis, then connect the points with a smooth curve. Ogives are incredibly useful for visualizing medians, quartiles, and other percentiles.
Common Mistakes to Avoid
A few pitfalls trip people up regularly:
- Forgetting to sort first. Always, always sort your data before building any frequency distribution.
- Misaligned class boundaries. If your data includes the value 20 and your class is 20–24, make sure 20 falls in that interval and not in 15–19. Consistency matters.
- Off-by-one errors in cumulative frequency. Each cumulative frequency should be strictly greater than or equal to the previous one. If it ever decreases, you've made a mistake.
- Ignoring the total. Your final cumulative frequency must equal n. If it doesn't, recheck your tallies.
Why This Matters
Cumulative frequency distributions are more than an academic exercise. They're used in quality control to track defect rates over time, in education to rank students by performance, in finance to analyze income distributions, and in epidemiology to understand disease spread. The pattern of "running totals" gives you a fundamentally different perspective than raw frequencies, especially when you're interested in thresholds, rankings, or positions within a dataset.
The next time you encounter a dataset, even a small one like our 30 study-hour observations, try building a cumulative frequency distribution. You'll discover patterns that simple averages and ranges simply can't reveal.
Latest Posts
New Around Here
-
Construct The Cumulative Frequency Distribution For The Given Data
Aug 28, 2026
-
Receptors Within The Highlighted Structure Provide The Sense Of
Aug 28, 2026
-
What Is True Of A Chocolate Called Pure Nacional
Aug 28, 2026
-
Face Centered Cubic Number Of Atoms
Aug 28, 2026
-
Which One Of The Following Is A Strong Acid
Aug 28, 2026
Related Posts
Keep the Momentum
-
What Is The Central Idea Of The Text
Aug 01, 2026
-
40 Of 120 Is What Percent
Aug 01, 2026
-
How Do You Find The Absolute Value Of A Fraction
Aug 01, 2026
-
In This Unit You Learned To
Aug 01, 2026
-
Which Of The Following Is True About Cannabis
Aug 01, 2026