Percentiles and Quartiles

April 12, 2026

Problem

Find the 25th, 50th, and 75th percentiles of 20 exam scores. Show position on ordered data.

Explanation

What are percentiles?

The kkth percentile is the value below which k%k\% of the data falls.

  • 25th percentile = Q1 (first quartile)
  • 50th percentile = Q2 (median)
  • 75th percentile = Q3 (third quartile)

Step-by-step: Finding percentiles

Step 1 — Sort the data from smallest to largest.

Step 2 — Compute the position: L=k100×nL = \frac{k}{100} \times n, where kk is the percentile and nn is the number of data points.

Step 3 — If LL is not a whole number, round up to get the position. If it is a whole number, average the values at positions LL and L+1L+1.

Example with 20 scores

For Q1 (25th percentile): L=0.25×20=5L = 0.25 \times 20 = 5. Average values at positions 5 and 6.

For Q2 (50th percentile): L=0.50×20=10L = 0.50 \times 20 = 10. Average values at positions 10 and 11.

For Q3 (75th percentile): L=0.75×20=15L = 0.75 \times 20 = 15. Average values at positions 15 and 16.

Interpretation

If your score is at the 90th percentile, you scored higher than 90% of test-takers.

Try it in the visualization

The sorted data is displayed. Q1, Q2, Q3 are marked with vertical lines. Each quartile contains exactly 25% of the data.

Interactive Visualization

Parameters

50.00
Your turn

Got your own math or physics problem?

Turn any problem into an interactive visualization like this one — powered by AI, generated in seconds. Free to try, no credit card required.

Sign Up Free to Try It30 free visualizations every day
Percentiles and Quartiles | MathSpin