TI TI84 Calculator Editorial Team

How to Find Z-Score on TI-84 — Complete Statistics Guide (2026)

The TI-84 handles Z-score calculations in two directions: you can calculate the probability from a Z-score using normalcdf, or find the Z-score from a probability using invNorm. Both functions live in the same DISTR menu and take under 30 seconds once you know the path. This guide covers both methods with real worked examples, plus the manual formula approach for when your teacher requires you to show your work.

⚡ Quick Answer

To find a Z-score probability on TI-84: press 2ndDISTR2: normalcdf → enter (lower, upper, μ, σ)ENTER. To find a Z-score from a probability: same menu → 3: invNorm → enter (area, μ, σ)ENTER.

✅ Key Takeaways
  • normalcdf → gives you a probability (area) from a Z-score range.
  • invNorm → gives you the Z-score (or x-value) from a probability.
  • Both functions are at: 2ndDISTR (above the VARS key).
  • For a standard normal distribution, use μ = 0 and σ = 1.
  • Use −1E99 and 1E99 as stand-ins for −∞ and +∞.
  • The manual Z-score formula is Z = (X − μ) / σ — the TI-84 can also compute this directly.
  • Practice these steps on the free online TI-84 simulator — no calculator needed.

What Is a Z-Score — Quick Recap

A Z-score tells you how many standard deviations a data point sits above or below the mean of a distribution. A Z-score of +1.5 means the value is 1.5 standard deviations above the mean. A Z-score of −2 means it is 2 standard deviations below.

Z-Score Formula
Z = (X − μ) / σ
X = observed value  |  μ = population mean  |  σ = standard deviation

In statistics class you'll run into two types of Z-score problems:

How to Access the DISTR Menu on TI-84

Every Z-score function on the TI-84 lives in the DISTR menu. Here's how to reach it from anywhere on the calculator:

The functions you'll use most often:

OptionFunction NameWhat It Does
1normalpdfHeight of the normal curve at a point (rarely needed)
2normalcdfArea/probability between two Z-score values ✅
3invNormZ-score or x-value for a given cumulative area ✅
4invTInverse t-distribution (for t-tests)
5tcdfArea under a t-distribution curve

Method 1 — Using normalcdf (Probability from Z-Score)

normalcdf calculates the area (probability) under the normal curve between two values. Think of it as answering: "What fraction of the data falls between these two points?"

Syntax

normalcdf syntax
normalcdf(lower, upper, μ, σ)
For standard normal: normalcdf(lower, upper, 0, 1)

Handling Infinity (−∞ and +∞)

When a problem says "below Z = 1.5" or "above Z = −0.5," one of your bounds is infinity. The TI-84 uses a large number as a substitute:

💡 Shorthand to remember "P(Z < 1.5)" → normalcdf(-1E99, 1.5, 0, 1)
"P(Z > 1.5)" → normalcdf(1.5, 1E99, 0, 1)
"P(−1 < Z < 1)" → normalcdf(-1, 1, 0, 1)

Method 2 — Using invNorm (Z-Score from Probability)

invNorm works in reverse — you give it a probability and it returns the corresponding Z-score or x-value. Use this for percentile problems: "What score is at the 90th percentile?"

Syntax

invNorm syntax
invNorm(area, μ, σ)
area = cumulative probability from the LEFT  |  result = x-value (or Z if μ=0, σ=1)
⚠️ invNorm always uses LEFT-tail area The area you enter must be the cumulative area from the LEFT side of the curve. If your problem gives you a right-tail probability (e.g., "top 10%"), subtract it from 1 first: 1 − 0.10 = 0.90, then enter invNorm(0.90, 0, 1).

Method 3 — Manual Z-Score Formula on TI-84

Sometimes an exam requires you to calculate the Z-score itself — not the probability — using the formula Z = (X − μ) / σ. The TI-84 home screen handles this arithmetic directly.

💡 Store values first for complex problems If you're working with the same mean and standard deviation repeatedly, store them: type 70 → M and 5 → S using the STO▶ key, then use M and S in your formula. This reduces typing errors across multiple calculations.

Worked Examples (Step-by-Step)

Example 1 — Probability Below a Z-Score

Problem: A data set has μ = 100 and σ = 15. What percentage of values fall below 115?

StepActionResult
1Press 2ndDISTR2normalcdf( appears
2Type: -1E99, 115, 100, 15Lower=−∞, Upper=115, μ=100, σ=15
3Press )ENTER0.8413 (84.13%)

About 84.1% of values fall below 115 in this distribution.

Example 2 — Probability Between Two Values

Problem: IQ scores have μ = 100 and σ = 15. What fraction of people score between 85 and 115?

StepActionResult
1Press 2ndDISTR2normalcdf( appears
2Type: 85, 115, 100, 15Lower=85, Upper=115
3Press )ENTER0.6827 (68.27%)

Approximately 68.3% of values fall within one standard deviation of the mean — this is the classic 68-95-99.7 rule confirmed.

Example 3 — Finding the 95th Percentile Score

Problem: Test scores have μ = 500 and σ = 100. What score marks the 95th percentile?

StepActionResult
1Press 2ndDISTR3invNorm( appears
2Type: 0.95, 500, 100Area=0.95, μ=500, σ=100
3Press )ENTER664.49

A score of approximately 664 falls at the 95th percentile in this distribution.

Example 4 — Manual Z-Score Calculation

Problem: A student scored 88 on a test where μ = 75 and σ = 8. What is their Z-score?

StepActionResult
1Go to home screenBlank entry line
2Type: (88-75)/8Formula entered
3Press ENTER1.625

The student's score is 1.625 standard deviations above the mean — a strong performance.

normalcdf vs invNorm — Which One to Use

Question TypeYou HaveYou WantUse
P(X < value) = ?X-value or Z-scoreProbabilitynormalcdf
P(X > value) = ?X-value or Z-scoreProbabilitynormalcdf
P(a < X < b) = ?Two X-valuesProbabilitynormalcdf
What value is at the Nth percentile?Probability / percentileX-value or Z-scoreinvNorm
Top/bottom X% cutoff?PercentageX-valueinvNorm
Calculate Z = (X−μ)/σ manuallyX, μ, σZ-score numberHome screen formula

Common Z-Score Mistakes on TI-84

MistakeWhat HappensFix
Entering area > 1 in invNorm ERR: DOMAIN error Area must be between 0 and 1 — convert percentage to decimal (e.g., 95% → 0.95)
Using right-tail probability in invNorm Wrong answer (mirrored Z-score) Subtract from 1 first: if top 10%, use 1−0.10 = 0.90
Skipping μ and σ in normalcdf Calculator defaults to standard normal — may be wrong Always explicitly enter your μ and σ even for standard normal (0, 1)
Using 0 as lower bound instead of −1E99 Only gets area from 0, not from −∞ Use -1E99 for negative infinity as lower bound
Forgetting parentheses in manual formula Wrong result due to order of operations Always wrap numerator: (X-μ)/σ not X-μ/σ
Calculator in wrong mode causing errors Unexpected screen behavior If the calculator behaves oddly, restore defaults to reset Mode settings without losing data

Practice Z-Scores Right Now — Free

Open the free TI-84 online simulator and follow every example in this guide. No calculator, no download — just open and calculate.

Open Free TI-84 Simulator →

These guides cover the other essential TI-84 skills that statistics and math students use alongside Z-score calculations:

Frequently Asked Questions

How do I find the Z-score on a TI-84 calculator?

There are two approaches. To find a probability from a Z-score, use normalcdf: press 2ndDISTR2, then enter (lower, upper, μ, σ). To find a Z-score from a probability, use invNorm: same menu → 3, then enter (area, μ, σ). To calculate the raw Z-score number from data, type (X-μ)/σ directly on the home screen and press ENTER.

Where is the normalcdf function on TI-84?

Press 2nd, then press VARS — the key is labeled DISTR in yellow above it. In the DISTR menu, normalcdf is option 2. Select it and the function name appears on your home screen (or a dialog box opens on newer TI-84 Plus CE firmware versions).

What is the difference between normalcdf and invNorm on TI-84?

normalcdf takes a range of values and returns the probability (area under the curve). You use it when you know the x-value or Z-score and want the probability. invNorm works in reverse — it takes a probability and returns the x-value or Z-score. Use invNorm for percentile problems where you know "what percent" and need to find "what value."

How do I find the area to the right of a Z-score on TI-84?

Use normalcdf with your Z-score as the lower bound and 1E99 (positive infinity) as the upper bound. For example, to find P(Z > 1.5) on a standard normal distribution: normalcdf(1.5, 1E99, 0, 1). Alternatively, you can compute 1 − normalcdf(-1E99, 1.5, 0, 1) for the same result.

How do I find a Z-score for a percentile on TI-84?

Use invNorm. Convert the percentile to a decimal (85th percentile = 0.85), then enter: invNorm(0.85, 0, 1) for a standard normal distribution. The result is the Z-score at that percentile. If you're working with a real dataset that has its own mean and standard deviation, replace 0 and 1 with your actual μ and σ — invNorm will return the x-value directly.

What does ERR: DOMAIN mean when using invNorm?

This error means the area (probability) value you entered is outside the valid range of 0 to 1. Common causes: entering a percentage like 95 instead of the decimal 0.95, or accidentally entering a value greater than 1 or less than 0. Make sure to convert any percentage to a decimal before entering it into invNorm.

How do I use invNorm for a two-tailed Z-score?

For a two-tailed problem, you need the Z-score that cuts off equal areas in both tails. If the total tail area is α (e.g., 0.05 for 95% confidence), each tail gets α/2. Enter invNorm(α/2, 0, 1) to get the negative critical value. For example, for a 95% confidence interval: invNorm(0.025, 0, 1) returns −1.96, and the positive critical value is +1.96 by symmetry.

Can I find a Z-score on the TI-84 online calculator?

Yes. The free online TI-84 at ti84calculato.com includes the full DISTR menu with normalcdf and invNorm. Every step in this guide works identically on the online simulator. It's especially useful for practicing before an exam or checking your work on any device. If you need to start fresh, the online simulator resets with one click — no menus required.

Putting Z-Scores Into Practice

Once you know the DISTR menu path — 2ndDISTR — Z-score problems become a matter of choosing the right function and entering the correct numbers. Use normalcdf when you're moving from a value to a probability, and invNorm when you're working backwards from a probability to a value. For quick manual calculations, the home screen formula (X−μ)/σ gets you a Z-score in under 10 seconds.

If your calculator ever acts up during statistics work — strange Mode settings, unexpected errors, or sluggish behavior — knowing how to reset the TI-84 quickly will get you back on track without losing your programs. And if you want to visualize normal distributions graphically, the graphing guide shows you how to plot them using the ShadeNorm function. For more statistics tutorials, visit the full Guides section.