For any normal distribution, what is the probability of selecting a score greater than the mean?

We obtain that 71.76% of 10-year-old girls have weight between 60 pounds and 90 pounds.

Find the 60th percentile for the weight of 10-year-old girls given that the weight is normally distributed with a mean 70 pounds and a standard deviation of 13 pounds.

As before, it is helpful to draw a sketch of the normal curve and shade in the region of interest. You can either sketch it by hand or use a graphing tool. You know that 60% will greater than half of the entire curve.

A caption for the above image.

We can use the Standard Normal Cumulative Probability Table to find the z-scores given the probability as we did before.

Area to the left of z-scores = 0.6000.

The closest value in the table is 0.5987.

The z-score corresponding to 0.5987 is 0.25.

Thus, the 60th percentile is z = 0.25.

Now that we found the z-score, we can use the formula to find the value of \(x\). The Z-score formula is \(z=\dfrac{x-\mu}{\sigma}\).

Using algebra, we can solve for \(x\).

\(x=\mu+z(\sigma)\)

\(x=70+(0.25)(13)=73.25\)

Therefore, the 60th percentile of 10-year-old girls' weight is 73.25 pounds.

Simulation: $n = 4, \mu = 68, \sigma = 4.$ Perhaps normally distributed heights in inches of four students.

set.seed(217) n = 4; mu = 68; sg=4 a = replicate(10^6, mean(rnorm(n,mu,sg))) # 10^6 sample averages mean((a > mu+sg) & (a < mu+2*sg)) [1] 0.022626 2*sd((a > mu+sg) & (a <= mu+2*sg))/1000 [1] 0.0002974161 # aprx 95% margin of simulation error

With a million iterations, one can expect about three place accuracy, so this result is in essential agreement with @trancelocation's result (+1) $\Phi(4) = \Phi(2) = 0.023.$

pnorm(4)-pnorm(2) [1] 0.02271846

Because the average of four $A = \bar X_4 \sim \mathsf{Norm}(68, 2)$ we can get the same numerical result directly (without standardizing) in R:

diff(pnorm(c(72,76), mu, sg/2)) [1] 0.02271846

The histogram below shows simulated values of $A$ along with its normal distribution (solid orange curve). Vertical dashed lines mark the interval $(\mu + \sigma, \mu + 2\sigma) = (72, 76).$ The dotted density curve of $\mathsf{Norm}(68, 4)$ is for each individual observation.

For any normal distribution, what is the probability of selecting a score greater than the mean?

R code for figure:

hdr = "n=4: Dist'n of Sample Means" hist(a, prob=T, br=30, col="skyblue2", xlim=c(55,80), main=hdr) abline(v = c(mu+sg, mu+2*sg), lwd=2, col="darkgreen", lty="dotted") curve(dnorm(x, mu, sg/sqrt(n)), add=T, lwd=2, col="orange") curve(dnorm(x, mu, sg), add=T, lwd=2, lty="dotted") abline(v = c(mu+sg, mu+2*sg), lwd=2, col="darkgreen", lty="dashed")

By Dr. Saul McLeod, published 2019

What does the z-score tell you?

A z-score describes the position of a raw score in terms of its distance from the mean, when measured in standard deviation units. The z-score is positive if the value lies above the mean, and negative if it lies below the mean.

It is also known as a standard score, because it allows comparison of scores on different kinds of variables by standardizing the distribution. A standard normal distribution (SND) is a normally shaped distribution with a mean of 0 and a standard deviation (SD) of 1 (see Fig. 1).

For any normal distribution, what is the probability of selecting a score greater than the mean?

  Figure 1. A standard normal distribution (SND).

Why are z-scores important?

It is useful to standardized the values (raw scores) of a normal distribution by converting them into z-scores because:

(a) it allows researchers to calculate the probability of a score occurring within a standard normal distribution;

(b) and enables us to compare two scores that are from different samples (which may have different means and standard deviations).

How do you calculate the z-score?

The formula for calculating a z-score is 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.

For any normal distribution, what is the probability of selecting a score greater than the mean?

Figure 2. Z-score formula in a population.

When the population mean and the population standard deviation are unknown, the standard score may be calculated using the sample mean (x̄) and sample standard deviation (s) as estimates of the population values.

How do you interpret a z-score?

The value of the z-score tells you how many standard deviations you are away from the mean. If a z-score is equal to 0, it is on the mean.

A positive z-score indicates the raw score is higher than the mean average. For example, if a z-score is equal to +1, it is 1 standard deviation above the mean.

A negative z-score reveals the raw score is below the mean average. For example, if a z-score is equal to -2, it is 2 standard deviations below the mean.

Another way to interpret z-scores is by creating a standard normal distribution (also known as the z-score distribution or probability distribution).

Fig 3 illustrates the important features of any standard normal distribution (SND).

For any normal distribution, what is the probability of selecting a score greater than the mean?

Figure 3. A standard normal distribution (SND) and normal distribution.

  1. The SND (i.e. z-distribution) is always the same shape as the raw score distribution. For example, if the distribution of raw scores if normally distributed, so is the distribution of z-scores.
  2. The mean of any SND always = 0.
  3. The standard deviation of any SND always = 1. Therefore, one standard deviation of the raw score (whatever raw value this is) converts into 1 z-score unit.

The SND allows researchers to calculate the probability of randomly obtaining a score from the distribution (i.e. sample). For example, there is a 68% probability of randomly selecting a score between -1 and +1 standard deviations from the mean (see Fig. 4).

For any normal distribution, what is the probability of selecting a score greater than the mean?

Figure 4. Proportion of a standard normal distribution (SND) in percentages.

The probability of randomly selecting a score between -1.96 and +1.96 standard deviations from the mean is 95% (see Fig. 4). If there is less than a 5% chance of a raw score being selected randomly, then this is a statistically significant result.

Learn how to use a z-score table

How to calculate a raw score when a z-score is known

Sometimes we know a z-score and want to find the corresponding raw score. The formula for calculating a z-score in a sample into a raw score is given below:

X = (z)(SD) + mean

As the formula shows, the z-score and standard deviation are multiplied together, and this figure is added to the mean.

Check your answer makes sense: If we have a negative z-score the corresponding raw score should be less than the mean, and a positive z-score must correspond to a raw score higher than the mean.

How to calculate a z-score using excel

To calculate the z-score of a specific value, x, first you must calculate the mean of the sample by using the AVERAGE formula.

For example, if the range of scores in your sample begin at cell A1 and end at cell A20, the formula =AVERAGE(A1:A20) returns the average of those numbers.

Next, you mush calculate the standard deviation of the sample by using the STDEV.S formula. For example, if the range of scores in your sample begin at cell A1 and end at cell A20, the formula = STDEV.S (A1:A20) returns the standard deviation of those numbers.

Now to calculate the z-score type the following formula in an empty cell: = (x – mean) / [standard deviation].

To make things easier, instead of writing the mean and SD values in the formula you could use the cell values corresponding to these values. For example, = (A12 – B1) / [C1].

Then, to calculate the probability for a SMALLER z-score, which is the probability of observing a value less than x (the area under the curve to the LEFT of x), type the following into a blank cell: = NORMSDIST( and input the z-score you calculated).

To find the probability of LARGER z-score, which is the probability of observing a value greater than x (the area under the curve to the RIGHT of x), type: =1 - NORMSDIST (and input the z-score you calculated).

 Download this article as a PDF

How to reference this article:

McLeod, S. A. (2019, May 17). Z-score: definition, calculation and interpretation. Simply Psychology. www.simplypsychology.org/z-score.html

Home | About Us | Privacy Policy | Advertise | Contact Us

Simply Psychology's content is for informational and educational purposes only. Our website is not intended to be a substitute for professional medical advice, diagnosis, or treatment.

© Simply Scholar Ltd - All rights reserved

For any normal distribution, what is the probability of selecting a score greater than the mean?
report this ad