Find the 10th percentile with Excel-inclusive, NIST, or nearest-rank methods, inspect interpolation steps, and calculate a value’s percentile rank.

Choose a solve target, then complete the visible required fields marked with *.


Related Calculators

10Th Percentile Position (Rank) Formula

The following formula is commonly used to calculate the position (rank/index) of the 10th percentile in a sorted data set of size n (this corresponds to the common definition used by Excelโ€™s PERCENTILE.INC and similar methods).

rโ‚โ‚€ = 1 + (n - 1) ร— 0.10

Variables:

  • r10 is the 10th-percentile position (rank/index) in the sorted data (1-based)
  • n is the total number of observations in the data set

To find the 10th percentile value, sort the data in ascending order and compute r10. If r10 is an integer, the 10th percentile is the value at that position. If r10 is not an integer, interpolate between the values at positions โŒŠr10โŒ‹ and โŒˆr10โŒ‰.

How to Calculate 10Th Percentile?

The following steps outline how to calculate the 10th percentile from an ordered data set using the given rank formula:


  1. First, determine the total number of observations in the data set (n).
  2. Sort the data in ascending order.
  3. Compute the 10th-percentile rank r10 = 1 + 0.10 ร— (n – 1).
  4. If r10 is an integer, the 10th percentile is the value at position r10 in the sorted list.
  5. If r10 is not an integer, interpolate between the values at positions โŒŠr10โŒ‹ and โŒˆr10โŒ‰ to get the 10th-percentile value.

Example Problem:

Use the following variables as an example problem to test your knowledge:

Total number of observations (n) = 50 (so the 10th-percentile rank is r10 = 1 + (50 – 1) ร— 0.10 = 5.9; the 10th-percentile value would be found by interpolating between the 5th and 6th values in the sorted data).