Finding Probability and Z-Score- Statistical Method
What Is a Z-Score and Why You Need to Know It
A z-score tells you how many standard deviations a value sits from the mean. That's it. Nothing fancy.
You use z-scores when you want to compare values from different normal distributions or find the probability of a specific outcome. Stats textbooks call this standardization. Engineers call it normalization. Everyone means the same thing.
Here's the formula:
z = (X - μ) / σ
Where:
- X = your data point
- μ = the population mean
- σ = the population standard deviation
Positive z-scores land above the mean. Negative ones land below. A z-score of 0 is exactly at the mean.
Finding Z-Scores: Step by Step
Let's say exam scores average 70 with a standard deviation of 10. You scored 85. What's your z-score?
z = (85 - 70) / 10 = 1.5
You scored 1.5 standard deviations above average. That's useful information on its own, but you're probably after the probability part next.
The Three Types of Probability Questions
Most z-score problems fall into three categories:
- Left tail: Find P(Z < z) — "What's the probability the value is less than X?"
- Right tail: Find P(Z > z) — "What's the probability the value is greater than X?"
- Between two values: Find P(a < Z < b) — "What's the probability the value falls between X and Y?"
Identifying which one you're solving matters. Students lose points here constantly because they calculate the wrong area.
How to Read a Z-Table
Z-tables give you the cumulative probability from the left. That means P(Z < your z-score).
Here's how to use one:
- Find your z-score to two decimal places (e.g., 1.23)
- Locate the row for 1.2
- Find the column for 0.03
- Read the intersection value
That value is your cumulative probability. For z = 1.23, the table gives approximately 0.8907. This means about 89.07% of values fall below 1.23 standard deviations above the mean.
Right Tail Problems
When you need P(Z > z), subtract the table value from 1.
P(Z > 1.5) = 1 - 0.9332 = 0.0668
About 6.68% of values exceed this point.
Between Two Values
For P(a < Z < b), find both cumulative probabilities and subtract.
P(-0.5 < Z < 1.2) = 0.8849 - 0.3085 = 0.5764
57.64% of values fall in that range.
Z-Score Probability Calculator vs. Table
Here's the honest comparison:
| Method | Speed | Accuracy | Best For |
|---|---|---|---|
| Z-Table | Slow | Limited to table precision | Exams where tables are provided |
| Scientific Calculator | Fast | High | Quick answers, homework |
| Online Calculator | Fastest | Very high | Real-world applications |
If you're taking a stats exam, learn the table. You'll need it. For anything else, a calculator or software gets you there faster with less room for table-reading errors.
Common Mistakes That Ruin Your Answer
- Forgetting to standardize before using the table. You can't plug raw scores into a z-table.
- Using the wrong tail. Double-check whether you need left, right, or between.
- Confusing cumulative and point probability. Z-tables never give point probabilities — only areas under the curve.
- Rounding too early. Keep full precision until your final answer.
Getting Started: Your First Z-Score Problem
Problem: A brand's social media engagement averages 500 comments per post with σ = 120. What percentage of posts get fewer than 350 comments?
Step 1: Calculate the z-score
z = (350 - 500) / 120 = -1.25
Step 2: Find P(Z < -1.25)
Look up -1.25 in your z-table. The value is approximately 0.1056.
Answer: About 10.56% of posts get fewer than 350 comments.
That's the complete process. Calculate z, find the area, interpret the result.
When Z-Scores Don't Apply
Z-scores only work for normally distributed data. If your data is skewed, multimodal, or from a different distribution entirely, z-scores will mislead you.
Always check your distribution first. Plot your data. Run a normality test if you're unsure. A z-score on non-normal data is garbage in, garbage out.
For non-normal distributions, look into:
- Percentile ranks
- Non-parametric methods
- Distribution-specific transformations
Software and Tools
For real work, you won't calculate these by hand. Here are practical options:
- Excel/Google Sheets:
=NORM.S.DIST(z, TRUE)gives cumulative probability - Python:
scipy.stats.norm.cdf(z) - R:
pnorm(z) - Graphing calculators: Use the normalcdf function with your bounds
These tools handle the heavy lifting. Learn one and stick with it.