How to Use the Z-Table (2024)

A z-table shows the percentage or probability of values that fall below a given z-score in a standard normal distribution. A z-score shows how many standard deviations a certain value is from the mean in a distribution. Here’s how to use a z-table and interpret a z-score for your data.

How to Use a Z-Table

To use a z-table, first turn your data into a normal distribution and calculate the z-score for a given value. Then, find the matching z-score on the left side of the z-table and align it with the z-score at the top of the z-table. The result gives you the probability.

What Is a Z-Score?

A z-score, or a standard score, tells how many standard deviations a given value is from the mean value in a distribution. The standard deviation is a measure of how data points are dispersed in relation to the mean. Z-scores can be used with any distribution, but are often the most informative when applied to a symmetric, normal distribution (known as a bell curve or Gaussian distribution).

How to Calculate Z-Score

The z-score formula is as follows:

How to Use the Z-Table (1)

How to Interpret Z-Score

If a z-score is positive, the observed value is above the mean. If a z-score is negative, the value is below the mean. If a z-score is 0, the value is equal to the mean. For example, a z-score of 1.0 shows that the value is one standard deviation above the mean, while a z-score of -1.0 shows the value is one standard deviation below the mean.

What Is a Z-Table?

A z-table, or standard normal table, tells the percentage of values that are less than a given z-score. This percentage also represents the probability of a value falling within the area to the left of a z-score in a standard normal distribution.

Z-tables can be positive or negative. A positive z-table is used when a z-score is positive, while a negative z-table is used when a z-score is negative.

More on Data ScienceUnderstanding Boxplots

How to Use a Z-Table (With Example)

To explain how to use a z-table, let’s apply an example. Imagine a scenario where we compare the test results from two students, Zoe and Mike. Zoe took the ACT and scored a 25, while Mike took the SAT and scored 1150. Both of these scores are represented as normal distributions. Which of the test takers scored better? And what proportion of people scored worse than Zoe and Mike?

How to Use the Z-Table (2)

1. Calculate Z-Score

To answer the above questions, we have to first use the z-score formula to calculate z-scores for Zoe and Mike.

How to Use the Z-Table (3)

From these results, Zoe has a higher z-score than Mike. As such, Zoe performed better on her test.

Additionally, these test scores started as normal distributions, so finding their z-scores also converts them into standard normal distributions, where the mean is 0 and the standard deviation is 1 (N(mean = 0, std = 1)).

2. Use the Z-Score to Find Probability on a Z-Table

While we know that Zoe performed better than Mike because of her higher z-score, a z-table can tell you in what percentile each of the test takers are in. We will use a positive z-table since both Zoe’s and Mike’s z-scores are positive and greater than the mean value of 0. The following partial z-table — cut off to save space — can tell you the area underneath the curve to the left of our z-score. This is the percentageof students that scored less than Zoe or Mike.

How to Use the Z-Table (4)

3. Find Zoe’s Z-Score Probability

To use the z-table, start on the left side of the table and go down to 1.2. At the top of the table, go to 0.05. This corresponds to the value of 1.2 + .05 = 1.25. The value in the table is .8944 which is the probability. Roughly 89.44 percent of people scored worse than Zoe on the ACT.

4. Find Mike’s Z-Score Probability

Mike’s z-score was 1.0. To use the z-table, start on the left side of the table and go down to 1.0. Now at the top of the table, go to 0.00. This corresponds to the value of 1.0 + .00 = 1.00. The value in the table is .8413, which is the probability. Roughly 84.13 percent of people scored worse than Mike on the SAT.

How to Read a Z-Table

  1. Take the whole number before the decimal point and the first digit after the decimal point of the z-score, and find this value on the left-most column of the z-table.
  2. Take the second digit after the decimal point of the z-score, and find this value on the top row of the z-table.
  3. Go to the intersection of the values found in steps 1 and 2 — the number shown at this intersection is the z-score probability.

How to Create a Z-Table

This section will answer where the values in the z-table come from by going through the process of creating a z-score table. Please don’t worry if you don’t understand this section. It’s not important if you just want to know how to use a z-score table.

Finding the Probability Density Function

This is very similar to the 68–95–99.7 rule, but adapted for creating a z-table. Probability density functions (PDFs) are important to understand if you want to know where the values in a z-table come from. A PDF is used to specify the probability of the random variable falling within a particular range of values, as opposed to taking on any one value. This probability is given by the integral of this variable’s PDF over that range. That is, it’s given by the area under the density function but above the horizontal axis, and between the lowest and greatest values of the range.

This definition might not make much sense, so let’s clear it up by graphing the probability density function for a normal distribution. The equation below is the probability density function for a normal distribution

How to Use the Z-Table (5)

Let’s simplify it by assuming we have a mean (μ) of zero and a standard deviation (σ) of one (standard normal distribution).

How to Use the Z-Table (6)

This can be graphed using any language, but I choose to graph it using Python.

# Import all libraries for this portion of the blog postfrom scipy.integrate import quadimport numpy as npimport matplotlib.pyplot as pltimport pandas as pd%matplotlib inlinex = np.linspace(-4, 4, num = 100)constant = 1.0 / np.sqrt(2*np.pi)pdf_normal_distribution = constant * np.exp((-x**2) / 2.0)fig, ax = plt.subplots(figsize=(10, 5));ax.plot(x, pdf_normal_distribution);ax.set_ylim(0);ax.set_title('Normal Distribution', size = 20);ax.set_ylabel('Probability Density', size = 20);
How to Use the Z-Table (7)

The graph above does not show you the probability of events but their probability density. To get the probability of an event within a given range, you need to integrate.

More on Data ScienceUnderstanding Train Test Split

Finding the Cumulative Distribution Function

Recall that the standard normal table entries are the area under the standard normal curve to the left of z (between negative infinity and z).

How to Use the Z-Table (8)

To find the area, you need to integrate. Integrating the PDF gives you the cumulative distribution function (CDF), which is a function that maps values to their percentile rank in a distribution. The values in the table are calculated using the cumulative distribution function of a standard normal distribution with a mean of zero and a standard deviation of one. This can be denoted with the equation below.

How to Use the Z-Table (9)

This is not an easy integral to calculate by hand, so I am going to use Python to calculate it. The code below calculates the probability for Zoe, who had a z-score of 1.25, and Mike, who had a z-score of 1.00.

def normalProbabilityDensity(x): constant = 1.0 / np.sqrt(2*np.pi) return(constant * np.exp((-x**2) / 2.0) )zoe_percentile, _ = quad(normalProbabilityDensity, np.NINF, 1.25)mike_percentile, _ = quad(normalProbabilityDensity, np.NINF, 1.00)print('Zoe: ', zoe_percentile)print('Mike: ', mike_percentile)
How to Use the Z-Table (10)

As the code below shows, these calculations can be done to create a z-table.

How to Use the Z-Table (11)

One important point to emphasize is that calculating this table from scratch when needed is inefficient, so we usually resort to using a standard normal table from a textbook or online source.

Why Are Z-Tables Important?

A z-table is able to present what percentage of data points in a distribution fall below a measured z-score. It can be used to compare two different z-scores from different distributions, or to shed light on other possible data probabilities based on hypothetical z-scores. Z-tables can be helpful for comparing data points and averages in cases like test scores, medical measurements or financial investments.

Frequently Asked Questions

How do you calculate the Z-score?

You can calculate a z-score using the following formula:

z = (x-μ) / σ

What are the two different Z-tables?

The two different types of z-tables include positive z-tables and negative z-tables. A positive z-table is used to find the probability of values falling below a positive z-score. A negative z-table is used to find the probability of values falling below a negative z-score.

What does the z-table tell you?

A z-table is able to tell you the percentage of values that fall below, or are to the left of, a certain z-score in a standard normal distribution.

How to Use the Z-Table (2024)

FAQs

How to solve using z table? ›

To use a z-table, first turn your data into a normal distribution and calculate the z-score for a given value. Then, find the matching z-score on the left side of the z-table and align it with the z-score at the top of the z-table. The result gives you the probability.

How do you answer Z scores? ›

The formula for calculating a z-score is z = (x-μ)/σ, where x is the raw score, μ is the population mean, and σ is the population standard deviation. As the formula shows, the z-score is simply the raw score minus the population mean, divided by the population standard deviation.

How do you interpret the z-score table? ›

Here is how to interpret z-scores: A z-score of less than 0 represents an element less than the mean. A z-score greater than 0 represents an element greater than the mean. A z-score equal to 0 represents an element equal to the mean.

How do you know when to use the Z table? ›

Positive Z-score Table: Used when the Z-score is positive and above the mean. A positive Z-score table allows you to find the percentage or probability of all values occurring below a given positive Z-score in a standard normal distribution. Negative Z-score Table: Used when the Z-score is negative and below the mean.

What is the z formula? ›

To calculate the standard error of the mean, you can use the following formula:Z = (x - μ) / (σ / √n)Where: x is the data point you choose. μ is the mean. σ is the standard deviation.

What is the z-score for dummies? ›

Z-score is a result of standardizing an individual data point. Simply put, a z-score gives us an idea of how far the data point is from the mean measured in terms of standard deviation(σ). For instance, a z-score of 2.5 indicates that the value is between 2 to 3 standard deviations from the mean and is not so common.

What are the steps for z-score? ›

Use the following format to find a z-score: z = X - μ / σ. This formula allows you to calculate a z-score for any data point in your sample. Remember, a z-score is a measure of how many standard deviations a data point is away from the mean.

How do you calculate grade with z-score? ›

For example, suppose a student gets a 58 on exam 2, where the mean grade is 48.8 and the standard deviation is 18.5. Her z-score is (58-48.8)/18.5 = 0.497. This is equivalent to a grade of 81.5 on exam 1, where the mean grade was 74 and the standard deviation was 15.1.

How do you read Z value? ›

Essentially, the Z-score can be interpreted as the number of standard deviations that a raw score x lies from the mean. So for example, if the z score is equal to a positive 0.5, then that's 4x is half a standard deviation above the mean. If a Z-score is equal to 0, that means that the score is equal to the mean.

How do you interpret the results of the z test? ›

Essentially, it is a numerical measurement that describes a value's relationship to the mean of a group of values. If a z-score is 0, it indicates that the data point's score is identical to the mean score. A z-score of 1.0 would indicate a value that is one standard deviation from the mean.

How do you interpret the Z distribution? ›

While data points are referred to as x in a normal distribution, they are called z or z scores in the z distribution. A z score is a standard score that tells you how many standard deviations away from the mean an individual value (x) lies: A positive z score means that your x value is greater than the mean.

How to solve for t score? ›

The t-score formula is: t = x ― − μ S n , where x ― is the sample mean, μ is the population mean, S is the standard deviation of the sample, and n is the sample size.

How to calculate z-score and t score? ›

As evidenced above, zscores are often negative and may contain decimal places. To eliminate thesecharacteristics, z scores often are converted to T scores. This isaccomplished using the simple formula: T score = 10(z score) + 50. Forexample, a z score of -2.5 becomes a T score of 25.

How to use z-score to find probability? ›

To find the probability for the area greater than z, look up the Z-score and subtract it from 1 (this is the same process for finding a negative Z-score). To find the probability for a negative Z-score look up the positive version on this table and subtract it from 1.

How do you find the z value from a table? ›

Solution: To find the z-score, we use the formula: z = (x - mean) / standard deviation. Plugging in the values, we get: z = (70,000 - 50,000) / 10,000 = 2 The z-score for a participant who earns $70,000 is 2, which means that this participant's income is 2 standard deviations above the mean income of the group.

How do you find the value of Z test in a table? ›

The value for z is calculated by subtracting the value of the average daily return selected for the test, or 3% in this case, from the observed average of the samples. Next, divide the resulting value by the standard deviation divided by the square root of the number of observed values.

What is the formula for the Z distribution table? ›

z = (X – μ) / σ

where X is a normal random variable, μ is the mean of X, and σ is the standard deviation of X. You can also find the normal distribution formula here. In probability theory, the normal or Gaussian distribution is a very common continuous probability distribution.

Top Articles
Latest Posts
Article information

Author: Gregorio Kreiger

Last Updated:

Views: 6033

Rating: 4.7 / 5 (77 voted)

Reviews: 84% of readers found this page helpful

Author information

Name: Gregorio Kreiger

Birthday: 1994-12-18

Address: 89212 Tracey Ramp, Sunside, MT 08453-0951

Phone: +9014805370218

Job: Customer Designer

Hobby: Mountain biking, Orienteering, Hiking, Sewing, Backpacking, Mushroom hunting, Backpacking

Introduction: My name is Gregorio Kreiger, I am a tender, brainy, enthusiastic, combative, agreeable, gentle, gentle person who loves writing and wants to share my knowledge and understanding with you.