Partition values divide a frequency distribution into equal parts to analyze data spread and position.
## Core concept
Partition values are positional measures that split a dataset into equal intervals. They show the relative position of observations within a distribution. Key partition values include:
- Quartiles (Q): Divide data into 4 equal parts (25% each)
- - Q₁ (first quartile): 25th percentile
- - Q₂ (second quartile): 50th percentile = Median
- - Q₃ (third quartile): 75th percentile
- Deciles (D): Divide data into 10 equal parts (10% each) — D₁, D₂, …, D₉
- Percentiles (P): Divide data into 100 equal parts (1% each) — P₁, P₂, …, P₉₉
## Formula / rule
For ungrouped data: - Position of partition value = (r/n) × (N + 1) - r = partition number (e.g., r = 1 for Q₁, r = 3 for Q₃) - n = total number of divisions (4 for quartile, 10 for decile, 100 for percentile) - N = total frequency
For grouped data: Use cumulative frequency and the formula:
Partition Value = L + [(f_p − F) / f] × h
Where: - L = lower class boundary of partition class - f_p = position of partition value = (r/n) × N - F = cumulative frequency before partition class - f = frequency of partition class - h = class width (upper − lower boundary)
Steps to locate partition value: 1. Calculate position using (r/n) × N 2. Locate the class containing that position using cumulative frequency 3. Apply the formula 4. Interpret the result
## Common exam applications
Interquartile Range (IQR): Q₃ − Q₁ measures spread and identifies outliers - Outlier threshold: Values < Q₁ − 1.5(IQR) or > Q₃ + 1.5(IQR)
Decile/Percentile comparisons: Useful in ranking systems, salary analysis, performance evaluation
Box-and-whisker plots: Visual representation using Q₁, Q₂, Q₃, and extremes
Quartile deviation: (Q₃ − Q₁)/2 measures variability; lower value = more concentrated data
## Worked example
Grouped data with 60 observations:
| Marks | 0–10 | 10–20 | 20–30 | 30–40 | 40–50 | |-------|------|-------|-------|-------|-------| | Frequency | 5 | 10 | 15 | 20 | 10 | | Cumulative Frequency | 5 | 15 | 30 | 50 | 60 |
Find Q₁ (first quartile): - Position = (1/4) × 60 = 15 - Cumulative frequency shows position 15 lies in the 10–20 class (where CF reaches 15) - L = 10, f_p = 15, F = 5, f = 10, h = 10 - Q₁ = 10 + [(15 − 5) / 10] × 10 = 10 + 10 = 20 marks
Find Q₃: - Position = (3/4) × 60 = 45 - This lies in the 30–40 class (CF = 50) - Q₃ = 30 + [(45 − 30) / 20] × 10 = 30 + 7.5 = 37.5 marks
IQR = 37.5 − 20 = 17.5
## Common mistakes
- Confusing partition position formula: use (r/n) × N, not (r/n) × (N+1) for grouped data
- Forgetting Q₂ = Median — they are identical
- Misidentifying the partition class — always verify cumulative frequency
- Using class width incorrectly when classes are unequal
- Not interpolating within the class — apply the full formula, don't just pick class midpoint
- Interpreting percentiles without context (e.g., P₉₀ means 90% of data lies below this value)
Always verify your cumulative frequency table before applying formulas in exams.