Home
Statistics Help
Z-Scores

Z-Scores Explained: Standardizing Data the Right Way

Quick Answer

A z-score tells you how many standard deviations a value is from the mean. The formula is z = (x − μ) / σ. A positive z-score means the value is above the mean; negative means below. Z-scores let you compare values from different distributions and find probabilities using the standard normal table.

What Is a Z-Score?

A z-score (also called a standard score) measures how far a data point is from the mean, expressed in terms of standard deviations.

Think of it as a universal translator. Raw scores (like test grades, heights, or temperatures) can’t be directly compared if they come from different scales. Z-scores convert everything to the same scale—standard deviations from the mean—making comparisons possible.

💡 Real-World Example

You scored 85 on a math test and 78 on an English test. Which performance was better? You can’t tell from raw scores alone. But if your math z-score is +1.2 and your English z-score is +1.8, you actually did better in English (relatively speaking)—you were further above average compared to your classmates.

The Z-Score Formula

For individual values from a population:

z = (x − μ) / σ

Where:

  • x = the individual value (raw score)
  • μ = the population mean
  • σ = the population standard deviation
  • z = the z-score (how many SDs from the mean)

Z-score concept showing transformation from raw scores to z-scores

Z-scores convert raw values to a standardized scale centered at 0

📝 Worked Example

Problem: IQ scores have μ = 100 and σ = 15. What is the z-score for an IQ of 130?

Solution: z = (130 − 100) / 15 = 30 / 15 = +2.0

Interpretation: An IQ of 130 is 2 standard deviations above the mean.

Interpreting Z-Scores

The sign and magnitude of a z-score tell you exactly where a value falls:

Z-Score Meaning Interpretation
z = 0 Exactly at the mean Average value
z = +1 1 SD above mean Above average
z = +2 2 SDs above mean Well above average (top ~2.5%)
z = −1 1 SD below mean Below average
z = −2 2 SDs below mean Well below average (bottom ~2.5%)
|z| > 3 More than 3 SDs from mean Unusual/outlier (less than 0.3% of data)

Quick Rule of Thumb

Most data (about 95%) falls between z = −2 and z = +2. If you calculate a z-score outside this range, the value is unusual. If |z| > 3, it’s very unusual and might be an outlier worth investigating.

Z-Scores and the Normal Distribution

When data is normally distributed, z-scores follow the standard normal distribution—a normal distribution with mean 0 and standard deviation 1. This connects directly to the 68-95-99.7 rule:

Normal distribution with z-scores showing 68-95-99.7 rule

The empirical rule: 68% within ±1 SD, 95% within ±2 SD, 99.7% within ±3 SD

Key percentages to remember:

  • 68% of data falls between z = −1 and z = +1
  • 95% of data falls between z = −2 and z = +2
  • 99.7% of data falls between z = −3 and z = +3

This means if you have a z-score of +2, you’re in the top 2.5% (since 95% is in the middle, leaving 2.5% in each tail).

Finding Probabilities from Z-Scores

One of the most common uses of z-scores is finding the probability that a value falls below (or above) a certain point. This requires a z-table or calculator.

How to read a z-table to find probabilities

The z-table gives the area to the LEFT of your z-score

Types of Probability Questions

Question Type What to Do Example (z = 1.5)
P(Z < z) Look up directly in table P(Z < 1.5) = 0.9332
P(Z > z) 1 − table value P(Z > 1.5) = 1 − 0.9332 = 0.0668
P(a < Z < b) Table(b) − Table(a) P(0 < Z < 1.5) = 0.9332 − 0.5 = 0.4332

📝 Complete Worked Example

Problem: Heights of women are normally distributed with μ = 64 inches and σ = 3 inches. What percentage of women are shorter than 67 inches?

Step 1: Convert to z-score: z = (67 − 64) / 3 = 3 / 3 = +1.0

Step 2: Look up z = 1.0 in table: 0.8413

Answer: About 84.13% of women are shorter than 67 inches.

Finding Values from Probabilities (Reverse Lookup)

Sometimes you know the probability and need to find the z-score (and then the raw value). This is called inverse normal or reverse lookup.

📝 Reverse Lookup Example

Problem: IQ scores have μ = 100 and σ = 15. What IQ score marks the top 10%?

Step 1: Top 10% means 90% is below. Find z where P(Z < z) = 0.90

Step 2: From table (or invNorm): z ≈ 1.28

Step 3: Convert back: x = μ + zσ = 100 + (1.28)(15) = 100 + 19.2 = 119.2

Answer: An IQ of about 119 marks the top 10%.

Formula for converting z back to x:

x = μ + zσ

Z-Scores for Sample Means

When working with sample means (not individual values), the formula changes slightly. This connects to the Central Limit Theorem:

z = (x̄ − μ) / (σ / √n)

For sample means, divide by the standard error (σ/√n), not σ

The key difference: sample means have less variability than individual values, so we use the standard error (σ/√n) in the denominator instead of σ.

📝 Sample Mean Example

Problem: A population has μ = 50 and σ = 10. For a sample of n = 25, what’s the probability the sample mean exceeds 53?

Step 1: Calculate SE = σ/√n = 10/√25 = 10/5 = 2

Step 2: Calculate z = (53 − 50) / 2 = 3/2 = 1.5

Step 3: P(Z > 1.5) = 1 − 0.9332 = 0.0668

Answer: About 6.68% chance the sample mean exceeds 53.

When to Use Z vs. T

Students often wonder when to use z-scores versus t-scores. Here’s the simple rule:

Flowchart showing when to use z vs t

The key question: Do you know the population standard deviation (σ)?

In practice: You’ll use t-tests more often because σ is rarely known in real-world situations. You’ll use z-scores when problems explicitly give you σ, or when working with proportions.

Common Student Mistakes

❌ Mistake #1: Subtracting in the wrong order

The formula is (x − μ), not (μ − x). If you subtract backwards, your z-score will have the wrong sign. A value above the mean should give a positive z-score.

❌ Mistake #2: Using σ instead of σ/√n for sample means

When finding probabilities about sample means (x̄), you must use the standard error (σ/√n) in the denominator—not σ. This is a common error that leads to incorrect answers.

❌ Mistake #3: Forgetting to convert “greater than” problems

The z-table gives P(Z < z)—the area to the LEFT. For P(Z > z), you need to subtract from 1. Many students forget this step and report the wrong probability.

❌ Mistake #4: Confusing percentile with percentage

If P(Z < 1.5) = 0.9332, this means 93.32% of values are BELOW z = 1.5. The z-score of 1.5 is at the 93rd percentile—not “93.32 percent.”

❌ Mistake #5: Using z when you should use t

If the problem gives you a sample standard deviation (s) instead of population SD (σ), you should use the t-distribution. Z-tests require knowing σ, which is rare in practice.

Platform-Specific Tips

ALEKS

ALEKS z-score problems are straightforward: calculate the z-score, look up the probability. ALEKS is strict about rounding—usually follow their format (4 decimal places for probabilities). For inverse problems, ALEKS may ask for z-scores to 2 decimal places.

MyStatLab (Pearson)

StatCrunch handles z-scores easily: Stat → Calculators → Normal. Enter μ = 0, σ = 1 for standard normal, or enter your actual parameters. For inverse lookup, use “Between” and set one bound to the probability you want.

WebAssign

WebAssign often tests conceptual understanding alongside calculations. Make sure you can interpret z-scores in context—don’t just calculate, explain what the z-score means for the problem scenario.

TI-83/84 Calculator

  • normalcdf(lower, upper, μ, σ) — finds P(lower < X < upper)
  • invNorm(area, μ, σ) — finds x-value for given left-tail area
  • For standard normal: use μ = 0, σ = 1
  • For P(Z > z): use normalcdf(z, 1E99, 0, 1)

Need help with these platforms? Our tutors work with ALEKS statistics, MyStatLab, and WebAssign every day.

Quick Reference Summary

📐 Formulas

Individual value:

z = (x − μ) / σ

Sample mean:

z = (x̄ − μ) / (σ/√n)

Convert back:

x = μ + zσ

📊 68-95-99.7 Rule

  • 68% within z = ±1
  • 95% within z = ±2
  • 99.7% within z = ±3

📝 Probability Conversions

  • P(Z < z) = table value directly
  • P(Z > z) = 1 − table value
  • P(a < Z < b) = table(b) − table(a)

⚠️ Remember: Positive z = above mean • Negative z = below mean • The z-table gives area to the LEFT

Frequently Asked Questions

Can z-scores be negative?

Yes! A negative z-score simply means the value is below the mean. For example, z = −1.5 means the value is 1.5 standard deviations below average. Negative z-scores are completely normal and common.

What’s a “good” z-score?

It depends on context. For test scores, z = +1 or higher is above average. For quality control (wanting values near the target), z-scores close to 0 are better. There’s no universal “good”—it depends on what you’re measuring and your goals.

Can z-scores be greater than 3 or less than −3?

Yes, but it’s rare. Only about 0.3% of data falls beyond ±3 standard deviations in a normal distribution. Values with |z| > 3 are often considered outliers and may warrant investigation.

Do z-scores only work for normal distributions?

You can calculate a z-score for any distribution (it’s just arithmetic). However, using z-tables to find probabilities assumes the data is normally distributed. For non-normal data, the 68-95-99.7 rule and z-table probabilities don’t apply exactly.

What if my z-table only shows positive values?

Use symmetry! The normal distribution is symmetric around 0, so P(Z < −1.5) = P(Z > +1.5) = 1 − P(Z < +1.5). Look up the positive value and subtract from 1 if you need the left tail of a negative z-score.

What’s the difference between z-score and percentile?

A z-score tells you how many standard deviations from the mean. A percentile tells you what percentage of values fall below. They’re related: z = +1 corresponds to about the 84th percentile, z = +2 to about the 98th percentile. You convert between them using the z-table.

Why do we standardize data?

Standardizing (converting to z-scores) lets you compare values from different distributions. It puts everything on the same scale (standard deviations from the mean), making it possible to ask “Is this math score or English score more impressive?” even though the tests have different scales.

Can you help with my z-score homework?

Absolutely. Z-scores appear in many statistics topics—probability calculations, hypothesis testing, confidence intervals, and more. Our tutors work with ALEKS, MyStatLab, WebAssign, and other platforms daily. Get a free quote to get started.

Related Resources

Statistics Foundations

Statistics Help

Need Help With Z-Scores?

Our tutors help you master z-score calculations, probability problems, and interpretations—on any platform.

Get a Free Quote