Answer:
15.58
Explanation:
1. Arrange n number of data points in ascending order: x1, x2, x3, ... xn
2. Calculate the rank r for the percentile p you want to find: r = (p/100) * (n - 1) + 1
3. If r is an integer then the data value at location r, xr, is the percentile p: p = xr
4. If r is not an integer, p is interpolated using ri, the integer part of r, and rf, the fractional part of r:
p = xri + rf * (xri+1 - xri)