top of page
Inaugurated by IN-SPACe
ISRO Registered Space Tutor

S3-SA3-0306

What is Deciles?

Grade Level:

Class 8

AI/ML, Data Science, Physics, Economics, Cryptography, Computer Science, Engineering

Definition
What is it?

Deciles are points that divide a dataset into 10 equal parts. Imagine cutting a long rope into 10 pieces of the same length; each cut mark represents a decile. They help us understand how data is spread out.

Simple Example
Quick Example

Think about the marks of 100 students in a math exam. If we arrange their marks from lowest to highest, the 1st Decile (D1) would be the mark below which 10% of students scored. The 5th Decile (D5) would be the mark below which 50% of students scored, and so on.

Worked Example
Step-by-Step

Let's find the 3rd Decile (D3) for the following exam scores of 10 students: 20, 35, 40, 50, 60, 65, 70, 75, 80, 90.

1. First, arrange the data in ascending order. Our data is already sorted: 20, 35, 40, 50, 60, 65, 70, 75, 80, 90.
---
2. Count the total number of data points (n). Here, n = 10.
---
3. Use the formula for the k-th Decile: D_k = (k * (n + 1) / 10)th term.
---
4. For the 3rd Decile (D3), k = 3. So, D3 = (3 * (10 + 1) / 10)th term.
---
5. Calculate the position: D3 = (3 * 11 / 10) = 33 / 10 = 3.3rd term.
---
6. This means D3 is between the 3rd and 4th terms. The 3rd term is 40 and the 4th term is 50.
---
7. To find the exact value, we use interpolation: D3 = 3rd term + 0.3 * (4th term - 3rd term).
---
8. D3 = 40 + 0.3 * (50 - 40) = 40 + 0.3 * 10 = 40 + 3 = 43.

So, the 3rd Decile (D3) is 43.

Why It Matters

Deciles are super useful in fields like Data Science and Economics to understand income distribution or performance levels. For example, a company might use deciles to see if their products are reaching customers across all income groups. Knowing deciles can even help you understand how your marks compare to others in a big exam!

Common Mistakes

MISTAKE: Not sorting the data first. | CORRECTION: Always arrange the data in ascending (smallest to largest) order before calculating deciles.

MISTAKE: Confusing deciles with percentiles or quartiles. | CORRECTION: Deciles divide data into 10 parts, quartiles into 4 parts, and percentiles into 100 parts. Remember the 'deci-' prefix means ten.

MISTAKE: Incorrectly calculating the position when it's a decimal (e.g., 3.3rd term). | CORRECTION: If the position is a decimal, like 3.3, it means the value is between the 3rd and 4th terms. You need to interpolate using the formula: term_value + decimal_part * (next_term_value - term_value).

Practice Questions
Try It Yourself

QUESTION: Find the 5th Decile (D5) for the following set of ages: 10, 12, 15, 18, 20, 22, 25, 28, 30. | ANSWER: D5 = 20

QUESTION: A class of 15 students scored these marks: 55, 60, 65, 70, 72, 75, 78, 80, 82, 85, 88, 90, 92, 95, 98. Find the 7th Decile (D7). | ANSWER: D7 = 88

QUESTION: If the 4th Decile (D4) for a dataset of 20 numbers is 60, and the 5th Decile (D5) is 65, what does this tell you about the data distribution? | ANSWER: This means 40% of the data points are less than or equal to 60, and 50% of the data points are less than or equal to 65. The values between 60 and 65 represent the range for the 40th to 50th percentile of the data.

MCQ
Quick Quiz

What is the main purpose of deciles?

To add all the numbers in a dataset

To divide a dataset into 10 equal parts

To find the average of a dataset

To multiply numbers in a sequence

The Correct Answer Is:

B

Deciles, by definition, are points that divide a dataset into 10 equal parts. Options A, C, and D describe other statistical operations, not the purpose of deciles.

Real World Connection
In the Real World

In India, deciles are often used by economists and government bodies to study income distribution among households. For example, they might look at the 1st Decile of income to understand the earnings of the poorest 10% of families, or the 9th Decile to see the income of the richest 10% (excluding the very top). This helps in planning social welfare programs and economic policies.

Key Vocabulary
Key Terms

DATASET: A collection of related information or numbers. | ASCENDING ORDER: Arranging numbers from smallest to largest. | INTERPOLATION: Estimating a value that lies between two known values. | PERCENTILE: A measure indicating the value below which a given percentage of observations in a group of observations falls. | QUARTILE: Points that divide a dataset into 4 equal parts.

What's Next
What to Learn Next

Great job understanding deciles! Next, you should explore 'Quartiles' and 'Percentiles'. These concepts are very similar but divide data into different numbers of parts, helping you become a pro at understanding data spread.

bottom of page