Percentile from Z-Score on Calculator
Percentile from Z-Score on Calculator, A z-score tells you how far a value is from the mean in terms of standard deviations. Once you know a z-score, you can use a TI-84 calculator to determine the corresponding percentile.
The percentile tells you the percentage of observations in a standard normal distribution that fall below a particular z-score.
What Is a Z-Score?
A z-score is calculated using: z=σx−μ
where:
- x = observed value
- μ = population mean
- σ = population standard deviation
For example, a z-score of 1.50 means that the observation is 1.5 standard deviations above the population mean.
A negative z-score indicates that the observation is below the mean.
What Is a Percentile?
A percentile represents the percentage of observations that fall below a particular value.
For example, if a z-score corresponds to the 90th percentile, approximately 90% of observations are below that z-score and approximately 10% are above it.
For a standard normal distribution:
- z = 0 corresponds to the 50th percentile
- z ≈ 1.00 corresponds to approximately the 84th percentile
- z ≈ 1.645 corresponds to approximately the 95th percentile
- z ≈ 1.96 corresponds to approximately the 97.5th percentile
- z ≈ −1.00 corresponds to approximately the 16th percentile
How to Find a Percentile from a Z-Score on a TI-84
The TI-84 calculator’s normalcdf( function can be used to calculate the area to the left of a z-score.
Step 1: Open the Distribution Menu
On the TI-84:
- Press 2nd.
- Press VARS to open the DISTR menu.
- Select
normalcdf(.
The syntax is:
normalcdf(lower, upper, μ, σ)
For the standard normal distribution:
- μ = 0
- σ = 1
Step 2: Enter the Z-Score
To find the percentile associated with a z-score, calculate the area from the far left of the normal distribution up to that z-score.
Use:
normalcdf(-1E99,z,0,1)
Here:
-1E99represents a very large negative value and effectively acts as negative infinity.zis the z-score.0is the mean of the standard normal distribution.1is the standard deviation.
For example, suppose: z=1.50
Enter:
normalcdf(-1E99,1.50,0,1)
The calculator returns approximately: 0.9332
Therefore: 0.9332×100=93.32
So a z-score of 1.50 corresponds to approximately the 93.32nd percentile.
Example 1: z = 1.00
Suppose you want to find the percentile corresponding to: z=1.00
Enter:
normalcdf(-1E99,1,0,1)
The result is approximately: 0.8413
Convert the decimal to a percentage: 0.8413×100=84.13
Therefore, z = 1.00 is approximately the 84.13th percentile.
Example 2: z = 1.96
Suppose: z=1.96
Enter:
normalcdf(-1E99,1.96,0,1)
The result is approximately: 0.9750
Therefore: 0.9750×100=97.50
So z = 1.96 corresponds to approximately the 97.5th percentile.
This is also why 1.96 is commonly associated with a two-sided 95% confidence interval: approximately 2.5% of the standard normal distribution lies above 1.96 and 2.5% lies below −1.96.
Example 3: Negative Z-Score
The same method works for negative z-scores.
Suppose: z=−1.00
Enter:
normalcdf(-1E99,-1,0,1)
The result is approximately: 0.1587
Therefore: 0.1587×100=15.87
So z = −1.00 corresponds to approximately the 15.87th percentile.
This means approximately 15.87% of observations are below a z-score of −1.00.
Quick Reference Table
| Z-Score | Approximate Percentile |
|---|---|
| −2.00 | 2.28th |
| −1.96 | 2.50th |
| −1.50 | 6.68th |
| −1.00 | 15.87th |
| −0.50 | 30.85th |
| 0 | 50th |
| 0.50 | 69.15th |
| 1.00 | 84.13th |
| 1.50 | 93.32nd |
| 1.645 | 95th |
| 1.96 | 97.50th |
| 2.00 | 97.72nd |
| 2.58 | 99.51st |
| 3.00 | 99.87th |
Percentile from a Z-Score Formula
Mathematically, the percentile associated with a z-score is the cumulative probability: P(Z≤z)=Φ(z)
where Φ(z) is the cumulative distribution function of the standard normal distribution.
On a TI-84, this can be calculated using:
normalcdf(-1E99,z,0,1)
To express the result as a percentile: Percentile=100×Φ(z)
What If You Know the Original Value Instead of the Z-Score?
If you know the original observation x, population mean μ, and population standard deviation σ, first calculate the z-score: z=σx−μ
Then enter that z-score into:
normalcdf(-1E99,z,0,1)
For example, suppose:
- x=85
- μ=70
- σ=10
First calculate: z=1085−70=1.5
Then:
normalcdf(-1E99,1.5,0,1)
which gives approximately: 0.9332
Therefore, an observation of 85 is approximately at the 93.32nd percentile, assuming the underlying distribution is normal.
Important Point About Percentiles and Z-Scores
A z-score does not automatically give a percentile unless a distribution is assumed.
The conversion from z-score to percentile using normalcdf assumes a standard normal distribution. If your data are substantially non-normal, interpreting a z-score as a normal-distribution percentile may not accurately represent the actual percentage of observations below that value.
Also remember that a percentile is different from a percentage score. Being at the 90th percentile means that approximately 90% of observations are below that value; it does not mean that you scored 90% on a test.
Conclusion
Finding a percentile from a z-score on a TI-84 calculator is straightforward. The key function is:
normalcdf(-1E99,z,0,1)
The result represents the cumulative area to the left of the z-score. Multiply that result by 100 to express it as a percentile.
For example: z=1.50
gives: P(Z≤1.50)≈0.9332
and therefore: 93.32nd percentile
Understanding this relationship between z-scores, cumulative probability, and percentiles is useful when interpreting standardized scores and analyzing normally distributed data.