Percentile Calculator

Calculate percentiles, quartiles, deciles, and IQR for any dataset.

Enter Your Data

Count: 12 values

Your Calculations

Value at P75
88.50
Percentile of 85
P62.5

Five Number Summary

65.0
Min
74.3
Q1
81.0
Median
88.5
Q3
95.0
Max
IQR (Q3 - Q1)14.25

Common Percentiles

P567.75
P1070.20
P2574.25
P5081.00
P7588.50
P9091.80
P9593.35
P9994.67

Deciles

D1
70.2
D2
72.6
D3
75.9
D4
78.8
D5
81.0
D6
83.8
D7
87.1
D8
89.6
D9
91.8

Outlier Detection (IQR Method)

Lower Fence
52.88
Q1 - 1.5 x IQR
Upper Fence
109.88
Q3 + 1.5 x IQR
Outliers Found0

Sorted Data

65, 70, 72, 75, 78, 80, 82, 85, 88, 90, 92, 95

What Is a Percentile?

A percentile indicates the value below which a given percentage of observations fall. If you're at the 90th percentile, you score higher than 90% of the population. Percentiles are widely used for standardized tests, growth charts, and comparing individual values to a reference population.

PercentileMeaningAlso Known As
25th percentile25% score below thisFirst quartile (Q1)
50th percentile50% score below thisMedian, Q2
75th percentile75% score below thisThird quartile (Q3)
90th percentile90% score below thisTop 10%
99th percentile99% score below thisTop 1%

Percentile Rank Formula

Percentile Rank = (Number of values below x / Total number of values) × 100

Where:

  • x= Value being evaluated
  • Percentile= The percentage of values at or below x

Percentile vs Percentage: Key Difference

A common confusion: percentile and percentage are NOT the same thing. Percentage measures performance on a task; percentile measures rank relative to others.

ConceptDefinitionExample
PercentageProportion correct (score/total × 100)You got 85% on a test (85/100 correct)
PercentileRank relative to othersYou're at 92nd percentile (beat 92% of test-takers)
Combined Example85% score could be 92nd percentile if most scored lower

Key insight: Percentile depends on how others perform, not just your score. An 85% could be at the 50th percentile if the test was easy, or at the 99th percentile if it was hard.

Calculating Percentiles

There are several methods to calculate percentiles, which can give slightly different results. The most common methods are the exclusive and inclusive approaches.

MethodFormula for PositionWhen Rank Isn't Integer
Exclusive (n+1)L = (P/100) × (n+1)Interpolate between values
Inclusive (n-1)L = (P/100) × (n-1) + 1Interpolate between values
Excel PERCENTILEL = (P/100) × (n-1) + 1Linear interpolation
Nearest rankL = ceiling[(P/100) × n]Round up, no interpolation

Percentile Position (Exclusive Method)

Position = (P/100) × (n + 1)

Where:

  • P= Desired percentile (e.g., 75 for 75th)
  • n= Number of data points
  • Position= Location in sorted data

Quartiles and Deciles

Quartiles divide data into four equal parts; deciles into ten parts. These are special percentiles used commonly in statistics and reporting.

DivisionPercentile ValuesUse
QuartilesQ1 = 25th, Q2 = 50th (median), Q3 = 75thFive-number summary, box plots
DecilesD1 = 10th, D2 = 20th, ..., D9 = 90thIncome distribution, rankings
Quintiles20th, 40th, 60th, 80thEconomic groupings

Interquartile Range (IQR): IQR = Q3 - Q1 measures spread of the middle 50% of data. Values below Q1 - 1.5×IQR or above Q3 + 1.5×IQR are potential outliers.

Finding Percentile Rank of a Value

The percentile rank tells you what percentile a specific value corresponds to—essentially asking "What percentage scored below this value?"

MethodFormulaInterpretation
SimplePR = (# below / n) × 100% strictly below value
Mean rankPR = (# below + 0.5×# equal) / n × 100Accounts for ties
Excel PERCENTRANKInterpolates between ranksPrecise fractional rank

Example: In a class of 30 students, if 24 score below you: PR = (24/30) × 100 = 80th percentile. You outperformed 80% of the class.

Percentiles and the Normal Distribution

For normally distributed data, percentiles map directly to z-scores. This allows conversion between raw scores, z-scores, and percentiles.

PercentileZ-ScoreStandard Deviation from Mean
1st-2.332.33 SD below
5th-1.651.65 SD below
16th-1.001 SD below
50th (median)0.00At the mean
84th+1.001 SD above
95th+1.651.65 SD above
99th+2.332.33 SD above

Converting Z-Score to Value

Value = Mean + (Z-score × Standard Deviation)

Where:

  • Value= Raw score at given percentile
  • Mean= Population mean (μ)
  • Z-score= Standard score for percentile
  • SD= Standard deviation (σ)

Real-World Applications of Percentiles

Percentiles are used whenever comparing individuals to a reference population. They provide context that raw scores alone cannot.

ApplicationCommon Percentiles ReportedWhat They Mean
Standardized Tests (SAT, GRE)Score + percentileHow you compare to test-takers
Child Growth ChartsWeight/height percentilesComparison to children same age
Income DistributionQuintiles, top 1%Where you fall economically
Performance ReviewsStack ranking percentileEmployee comparison
Medical LabsReference rangesIs your value normal?
Academic GradingClass percentile rankClass standing

Growth chart example: A child at the 60th percentile for height is taller than 60% of children their age—perfectly normal. Concern arises when percentile changes dramatically (e.g., from 75th to 25th).

Worked Examples

Finding the 75th Percentile

Problem:

Find the 75th percentile of: 3, 6, 7, 8, 8, 9, 10, 13, 15, 16, 20

Solution Steps:

  1. 1Sort data (already sorted): n = 11 values
  2. 2Calculate position: L = (75/100) × (11+1) = 0.75 × 12 = 9
  3. 3Position 9 is a whole number, so 75th percentile = 9th value
  4. 4Count to position 9: 3, 6, 7, 8, 8, 9, 10, 13, 15...

Result:

75th percentile = 15. This means 75% of values (roughly 8 of 11) are below 15.

Finding Percentile with Interpolation

Problem:

Find the 30th percentile of: 5, 10, 15, 20, 25 (n = 5)

Solution Steps:

  1. 1Calculate position: L = (30/100) × (5+1) = 0.30 × 6 = 1.8
  2. 2Position 1.8 is between 1st and 2nd values
  3. 3Value at position 1 = 5; Value at position 2 = 10
  4. 4Interpolate: 5 + 0.8 × (10 - 5) = 5 + 4 = 9

Result:

30th percentile = 9. This is 80% of the way from the 1st value (5) to the 2nd value (10).

Finding Percentile Rank of a Value

Problem:

In a class of 25 students, your score of 78 is higher than 20 students. What is your percentile rank?

Solution Steps:

  1. 1Count students scoring below you: 20
  2. 2Total students: 25
  3. 3Percentile rank = (20 / 25) × 100 = 80
  4. 4Interpretation: You're at the 80th percentile

Result:

Percentile rank = 80th. You scored better than 80% of the class. This could also be described as 'top 20%'.

Tips & Best Practices

  • Remember: percentile tells you your rank relative to others, not your absolute performance.
  • The 50th percentile is the median—half the data is below, half above.
  • For quick estimation: 1 standard deviation above mean ≈ 84th percentile; 2 SD ≈ 98th percentile.
  • IQR (Q3 - Q1) captures the middle 50% and is useful for identifying outliers.
  • Small datasets can give unreliable percentiles—larger samples give more stable estimates.
  • When comparing test scores, percentiles are often more meaningful than raw scores.
  • 'Top 10%' equals the 90th percentile and above (100 - 10 = 90).

Frequently Asked Questions

Percent measures a proportion of something (e.g., 80% correct answers). Percentile measures relative rank in a population (e.g., 80th percentile means you beat 80% of people). You could score 80% on a test and be at the 95th percentile if it was a hard test, or at the 50th percentile if it was easy.
Technically, the 100th percentile would mean everyone scores below you, but you score below yourself—a paradox. In practice, scores are often reported up to the 99th percentile. If you're at the '100th percentile,' it usually means you're in the top fraction of a percent, rounded up.
No! The 50th percentile is the median (middle value). The mean (average) equals the median only for symmetric distributions. For skewed data (like income), the median can be very different from the mean. For income, median is usually less than mean due to high earners.
There are multiple valid methods for calculating percentiles: exclusive, inclusive, nearest rank, linear interpolation, etc. For small datasets, these can give noticeably different results. For large datasets, they typically converge. Check which method your tool uses.
Top 10% means at or above the 90th percentile (since 100% - 10% = 90%). Similarly: top 1% = 99th+ percentile; top 25% = 75th+ percentile. The top X% corresponds to the (100-X)th percentile and above.
Growth charts compare a child's height, weight, or head circumference to children of the same age and sex. A child at the 40th percentile for height is taller than 40% of peers—completely normal. Doctors watch for significant changes in percentile over time, which could indicate health issues.

Sources & References

Last updated: 2026-01-22