A Formula for Finding the kth Percentile

Learning Outcomes

  • Given a data set, find the kth percentile

A Formula for Finding the k th Percentile

If you were to do a little research, you would find several formulas for calculating the kth percentile. Here is one of them.

k = the kth percentile. It may or may not be part of the data.

i = the index (ranking or position of a data value)

n = the total number of data

  • Order the data from smallest to largest
  • Calculate i=k100(n+1)
  • If i is an integer, then the kth percentile is the data value in the ith position in the ordered set of data.
  • If i is not an integer, then round i up and round i down to the nearest integers. Average the two data values in these two positions in the ordered data set. This is easier to understand in an example.

Example

Listed are 29 ages for trees found in the Saint Louis Botanical Garden in order from smallest to largest.

18; 21; 22; 25; 26; 27; 29; 30; 31; 33; 36; 37; 41; 42; 47; 52; 55; 57; 58; 62; 64; 67; 69; 71; 72; 73; 74; 76; 77

  1. Find the 70th percentile.
  2. Find the 83rd percentile.

Try It

Listed are 29 ages for Academy Award winning best actors in order from smallest to largest.

18; 21; 22; 25; 26; 27; 29; 30; 31; 33; 36; 37; 41; 42; 47; 52; 55; 57; 58; 62; 64; 67; 69; 71; 72; 73; 74; 76; 77

Calculate the 20th percentile and the 55th percentile.

NOTE

You can calculate percentiles using calculators and computers. There are a variety of online calculators.

A Formula for Finding the Percentile of a Value in a Data Set

  • Order the data from smallest to largest
  • x = the number of data values counting from the bottom of the data list up to but not including the data value for which you want to find the percentile
  • y = the number of data values equal to the data value for which you want to find the percentile
  • n = the total number of data
  • Calculate x+0.5yn(100). Then round to the nearest integer.

Example

Listed are 29 ages for Academy Award winning best actors in order from smallest to largest.

18; 21; 22; 25; 26; 27; 29; 30; 31; 33; 36; 37; 41; 42; 47; 52; 55; 57; 58; 62; 64; 67; 69; 71; 72; 73; 74; 76; 77

  1. Find the percentile for 58.
  2. Find the percentile for 25.

Try It

Listed are 30 ages for New York Times published columnists in order from smallest to largest.

18; 21; 22; 25; 26; 27; 29; 30; 31, 31; 33; 36; 37; 41; 42; 47; 52; 55; 57; 58; 62; 64; 67; 69; 71; 72; 73; 74; 76; 77

Find the percentiles for 47 and 31.