Z-Score Calculator with Probability, P-Value & Standard Deviation

Calculate z-scores, probabilities, and statistical significance with detailed solutions.

Z-Score Calculator

Enter values and select calculation type

📊 Single Value
📈 From Dataset
📉 Probability
↔️ Between Values
% Percentile
↩️ Inverse Z-Score

Calculation Results

TXT
CSV
JSON
Print
-
Z-Score
-
Probability
-
Percentile
-
Interpretation

Distribution Visualization

Recent Calculations

What is a Z-Score?

Z-score (also called standard score) measures how many standard deviations a data point is from the mean of a distribution. It standardizes data for comparison across different scales and distributions.

Key Concepts:

  • Standardization: Converts data to a common scale with mean 0 and standard deviation 1
  • Normal Distribution: Z-scores are based on the standard normal distribution
  • Comparison: Allows comparison of data from different distributions
  • Probability: Z-scores can be converted to probabilities using the standard normal distribution

Z-Score Formula

The formula for calculating a z-score for a data point x from a population with mean μ and standard deviation σ.

z = (x - μ) / σ

Sample Z-Score

When working with sample data, use sample mean (x̄) and sample standard deviation (s).

z = (x - x̄) / s

Standard Normal Distribution

The standard normal distribution has mean 0 and standard deviation 1, and its shape is defined by the probability density function.

φ(z) = (1/√(2π)) * e^(-z²/2)

Z-Score Calculation

Learn how to calculate z-scores in different scenarios and interpret the results.

Single Data Point

Calculate how many standard deviations a single value is from the mean.

x = 85, μ = 75, σ = 10
z = (85 - 75) / 10 = 1.0

From Dataset

Calculate z-score when you have a dataset and need to find the mean and standard deviation first.

Dataset: [65, 70, 75, 80, 85, 90, 95]
x = 85, x̄ = 80, s ≈ 10.8
z = (85 - 80) / 10.8 ≈ 0.46

Probability from Z-Score

Find the probability that a value is less than or greater than a given z-score.

z = 1.5
P(Z < 1.5) = 0.9332
P(Z > 1.5) = 0.0668

Between Two Z-Scores

Find the probability that a value falls between two z-scores.

z1 = -1, z2 = 1
P(-1 < Z < 1) = 0.8413 - 0.1587 = 0.6826

Percentile to Z-Score

Find the z-score corresponding to a specific percentile.

90th percentile
z ≈ 1.28

Inverse Z-Score

Find the original data point from a z-score, mean, and standard deviation.

z = 1.5, μ = 75, σ = 10
x = μ + zσ = 75 + 1.5×10 = 90

Interpreting Z-Scores

Understanding what different z-score values mean in practical terms.

Z-score interpretation: The sign indicates direction from the mean (+ above, - below), and the magnitude indicates how many standard deviations away.

Negative Z-Scores

Indicates the data point is below the mean.

z = -1.5: The value is 1.5 standard deviations
below the mean

Positive Z-Scores

Indicates the data point is above the mean.

z = 2.0: The value is 2 standard deviations
above the mean

Z-Score of 0

Indicates the data point is exactly at the mean.

z = 0: The value equals the population mean

Extreme Z-Scores

Z-scores beyond ±2 are unusual, beyond ±3 are very unusual.

z = 3.5: This is an extreme value that
occurs very rarely
Empirical Rule (68-95-99.7 Rule):
• 68% of data falls within ±1 standard deviation
• 95% of data falls within ±2 standard deviations
• 99.7% of data falls within ±3 standard deviations

Real-World Applications of Z-Scores

Z-scores have numerous practical applications across various fields:

Statistics & Research

  • Hypothesis testing
  • Outlier detection
  • Standardizing variables
  • Comparing different distributions

Education

  • Standardized test scoring
  • Academic performance comparison
  • Grade normalization
  • Admissions testing

Finance & Economics

  • Risk assessment
  • Stock market analysis
  • Credit scoring
  • Economic indicators

Healthcare & Medicine

  • Growth charts (pediatrics)
  • Clinical trial analysis
  • Medical test interpretation
  • Epidemiological studies

Quality Control

  • Process capability analysis
  • Quality assurance
  • Manufacturing standards
  • Six Sigma methodologies

Psychology & Social Sciences

  • Personality assessment
  • IQ test scoring
  • Survey data analysis
  • Behavioral research

Solved Examples

Step-by-step solutions to common z-score problems:

Example 1: Basic Z-Score
Test score of 85, mean of 75, standard deviation of 10.
1. Formula: z = (x - μ) / σ
2. Substitute: z = (85 - 75) / 10
3. Calculate: z = 10 / 10 = 1.0
Result: z = 1.0
The score is 1 standard deviation above the mean.
Example 2: Negative Z-Score
Test score of 65, mean of 75, standard deviation of 10.
1. Formula: z = (x - μ) / σ
2. Substitute: z = (65 - 75) / 10
3. Calculate: z = (-10) / 10 = -1.0
Result: z = -1.0
The score is 1 standard deviation below the mean.
Example 3: Probability Calculation
Find P(Z < 1.5) using the standard normal distribution.
1. Look up z = 1.5 in standard normal table
2. Find corresponding probability
3. P(Z < 1.5) = 0.9332
Result: 93.32%
93.32% of values fall below z = 1.5 in a standard normal distribution.
Example 4: Between Two Values
Find P(-1 < Z < 1) using the standard normal distribution.
1. P(Z < 1) = 0.8413
2. P(Z < -1) = 0.1587
3. P(-1 < Z < 1) = 0.8413 - 0.1587 = 0.6826
Result: 68.26%
About 68% of values fall within 1 standard deviation of the mean (Empirical Rule).
Example 5: Percentile to Z-Score
Find the z-score for the 90th percentile.
1. Find z such that P(Z < z) = 0.90
2. Look up in standard normal table or use approximation
3. z ≈ 1.28
Result: z ≈ 1.28
The 90th percentile corresponds to approximately 1.28 standard deviations above the mean.
Example 6: Inverse Z-Score
Find the original value for z = 1.5, μ = 75, σ = 10.
1. Formula: x = μ + zσ
2. Substitute: x = 75 + 1.5×10
3. Calculate: x = 75 + 15 = 90
Result: x = 90
A z-score of 1.5 corresponds to a value of 90 given the mean and standard deviation.

Practice Problems

Test your understanding with these practice problems:

Problem 1: Calculate the z-score for a value of 110 with mean 100 and standard deviation 15.

Solution:

z = (110 - 100) / 15 = 10 / 15 ≈ 0.67

The value is 0.67 standard deviations above the mean.

Problem 2: Find P(Z > 2.0) using the standard normal distribution.

Solution:

P(Z < 2.0) = 0.9772

P(Z > 2.0) = 1 - 0.9772 = 0.0228 or 2.28%

Only 2.28% of values fall beyond 2 standard deviations above the mean.

Problem 3: Find the value that corresponds to the 95th percentile with μ = 100 and σ = 15.

Solution:

z for 95th percentile ≈ 1.645

x = μ + zσ = 100 + 1.645×15 ≈ 100 + 24.675 = 124.675

The 95th percentile value is approximately 124.68.

Problem 4: Calculate the z-score for a value of 70 in a dataset: [50, 60, 70, 80, 90].

Solution:

Mean = (50+60+70+80+90)/5 = 350/5 = 70

Standard deviation = √[((50-70)²+(60-70)²+(70-70)²+(80-70)²+(90-70)²)/5] = √[(400+100+0+100+400)/5] = √(1000/5) = √200 ≈ 14.14

z = (70 - 70) / 14.14 = 0

The value is exactly at the mean (z = 0).

Problem 5: Find P(-1.5 < Z < 2.0) using the standard normal distribution.

Solution:

P(Z < 2.0) = 0.9772

P(Z < -1.5) = 0.0668

P(-1.5 < Z < 2.0) = 0.9772 - 0.0668 = 0.9104 or 91.04%

About 91% of values fall between -1.5 and 2.0 standard deviations from the mean.

How to Calculate Z-Scores Step-by-Step

Follow this systematic approach to perform z-score calculations:

1

Understand the Formula

The z-score formula is z = (x - μ) / σ, where x is the data point, μ is the mean, and σ is the standard deviation.

z = (x - μ) / σ
2

Gather Your Data

Identify the data point you want to standardize and the mean and standard deviation of the population or sample.

x = 85, μ = 75, σ = 10
3

Calculate Difference from Mean

Subtract the mean from the data point to find how far it is from the average.

85 - 75 = 10
4

Divide by Standard Deviation

Divide the difference by the standard deviation to express it in standard deviation units.

10 / 10 = 1.0
5

Interpret the Result

A positive z-score means above average, negative means below average. The magnitude shows how extreme the value is.

z = 1.0: 1 standard deviation above mean
6

Convert to Probability (Optional)

Use standard normal distribution tables or computational methods to find probabilities associated with the z-score.

P(Z < 1.0) = 0.8413

Pro Tips for Z-Score Calculations

  • Sample vs Population: Use sample mean (x̄) and sample standard deviation (s) when working with samples
  • Direction matters: Positive z-scores are above mean, negative are below
  • Extreme values: Z-scores beyond ±3 are very unusual (occur in about 0.3% of cases)
  • Probability interpretation: P(Z < z) gives the probability that a random value is less than your z-score
  • Comparison: Z-scores allow comparison of values from different distributions

Z-Score FAQs (Standard Score, Probability & Normal Distribution)

Common questions about z-scores, standard deviation, probability, and statistical significance.

What is a z-score?
A z-score measures how many standard deviations a data point is from the mean of a distribution. It standardizes values for comparison across datasets.
How do you calculate a z-score?
A z-score is calculated by subtracting the mean from a value and dividing by the standard deviation.
What is the difference between z-score and standard deviation?
Standard deviation measures data spread, while a z-score indicates how far a specific value is from the mean in standard deviation units.
Can z-scores be negative?
Yes, a negative z-score means the value is below the mean, while a positive z-score means it is above the mean.
What is a good z-score?
There is no universal “good” z-score. Values near 0 are typical, while values beyond ±2 or ±3 are considered unusual or extreme.
What does a z-score of 2.5 mean?
It means the value is 2.5 standard deviations above the mean, representing a rare event in a normal distribution.
How do you find probability from a z-score?
Probability is calculated using a standard normal distribution table or software to find the area under the curve.
What is a z-table?
A z-table provides cumulative probabilities for z-scores in a standard normal distribution.
What is the normal distribution?
The normal distribution is a symmetric bell-shaped curve where most values cluster around the mean.
What z-score corresponds to 95% confidence?
A z-score of approximately ±1.96 corresponds to a 95% confidence level.
What is statistical significance in z-scores?
Statistical significance is determined by comparing the z-score to critical values or converting it into a p-value.
Can z-scores be used for non-normal distributions?
Z-scores can be calculated for any data, but probability interpretations are most accurate for normally distributed data.
What is a p-value from a z-score?
A p-value represents the probability of observing a value as extreme as the z-score under the null hypothesis.
When should I use z-scores instead of t-scores?
Use z-scores when the population standard deviation is known or the sample size is large. Use t-scores for small samples with unknown population variance.