Percentile Calculator

Enter a list of numbers and a target percentile to find the value at that rank. The calculator also shows dataset stats like count, min, and max.

How Percentiles Work

Percentiles divide a dataset into 100 equal parts. The 25th percentile (Q1) marks the first quarter, the 50th percentile (Q2) is the median, and the 75th percentile (Q3) marks the third quarter. Together, Q1, Q2, and Q3 are called quartiles.

To find a percentile, sort all values from smallest to largest. The rank formula places you at the correct position within the ordered list. When the rank falls between two data points, interpolation produces a precise value.

Different methods exist for percentile calculation. This calculator uses linear interpolation (also called the inclusive method), which is the most common approach and matches Excel's PERCENTILE.INC function.

Where Percentiles Are Used

Standardized testing relies heavily on percentiles. SAT, GRE, and IQ scores are often reported as percentiles rather than raw scores because percentiles immediately tell you how you compare to others. Scoring in the 90th percentile means you performed better than 90% of test takers.

Pediatric growth charts use percentiles to track child development. A baby at the 60th percentile for weight is heavier than 60% of babies the same age. Doctors watch for dramatic percentile changes, not the specific number.

In web performance, response time percentiles help identify user experience issues. The 95th percentile response time (p95) shows the slowest 5% of requests, which is more useful than the average for spotting problems that affect a meaningful number of users.

Percentiles vs. Other Statistics

The mean (average) is sensitive to extreme values. One billionaire in a room of average earners dramatically skews the mean income upward. The median (50th percentile) is not affected by outliers, making it a better measure of what is typical.

Standard deviation tells you how spread out data is, but not where a specific value sits within that spread. Percentiles give you exact positioning: the 90th percentile means you're near the top regardless of how spread the data is.

Z-scores and percentiles are closely related for normally distributed data. A z-score of 1.0 corresponds to roughly the 84th percentile, and a z-score of 2.0 to the 97.7th percentile. This calculator works with any data distribution, not just normal distributions.

Frequently Asked Questions

What does percentile mean?

A percentile indicates the value below which a given percentage of data falls. The 75th percentile means 75% of the data points are at or below that value.

How is the percentile calculated?

This calculator uses linear interpolation. It sorts the data, computes the rank position from the percentile, and interpolates between adjacent values if the rank falls between two data points.

What is the 50th percentile?

The 50th percentile is the median, the middle value of the dataset. Half the data points are below it and half are above it.

How many data points do I need?

Technically, you can compute a percentile with just 2 data points, but results become more meaningful with larger datasets. For reliable percentile estimates, aim for at least 20-30 data points.

Is percentile the same as percentage?

No. Percentage is a portion of a whole (e.g., 75% of 200 is 150). Percentile is a ranking within a dataset (e.g., 75th percentile means you scored higher than 75% of the group).