What this quiz covers
This quiz focuses on Normal Tables And Technology, giving you a quick way to practice the rules, question types, and explanations that matter most for College Statistics.
For a normally distributed random variable X with mean μ and standard deviation σ, it is known that P(X>μ+12)=0.1587. What is the value of σ?
College Statistics Quiz
Practice Normal Tables And Technology in College Statistics with focused quiz questions that help you check what you know, review explanations, and build confidence with test-style prompts.
This quiz focuses on Normal Tables And Technology, giving you a quick way to practice the rules, question types, and explanations that matter most for College Statistics.
Try each quiz question before looking at the correct answer. Use the explanations to review missed ideas, then come back to similar questions until the pattern feels familiar.
For a normally distributed random variable X with mean μ and standard deviation σ, it is known that P(X>μ+12)=0.1587. What is the value of σ?
If Z is a standard normal random variable, what is the value of P(0.5<∣Z∣<1.5)?
Let X be a normally distributed random variable with a mean of 50. If the probability that X is greater than 55 is 0.2, what is the probability that X is less than 45?
For a standard normal random variable Z, what is the approximate probability that Z2>1?
The lifespan of a certain brand of light bulb is normally distributed with a mean of 1200 hours and a standard deviation of 80 hours. Given that a randomly selected light bulb has already lasted 1240 hours, what is the approximate probability that it will last more than 1300 hours?
The time required for a student to complete a standardized test is normally distributed with a standard deviation of 8 minutes. It is known that 70% of students finish the test in less than 65 minutes. Based on this information, what is the mean completion time for the test?
The weights of apples from a certain orchard are normally distributed with a mean of 170 grams and a standard deviation of 12 grams. An apple with a weight of 191 grams is selected. A second apple is selected that has a weight with the same magnitude Z-score, but with the opposite sign. What is the weight of the second apple?
A statistics software package provides the function qnorm(p, mean, sd), which returns the value x such that P(X≤x)=p. To find the value that separates the top 5% of scores from the bottom 95% for a distribution N(100,15), what would be the correct syntax?
qnorm() function finds the x-value (quantile) where a given probability falls below that point.
The question asks for the value separating the top 5% from the bottom 95%. This means you want the 95th percentile - the point where 95% of values fall below and 5% fall above. Since qnorm(p, mean, sd) returns the x-value where P(X≤x)=p, you need p=0.95 to find where 95% of the distribution lies below that point.
For a normal distribution N(100,15), the mean is 100 and standard deviation is 15. Therefore, the correct syntax is qnorm(0.95, 100, 15).
Looking at the wrong answers: Choice A uses qnorm(0.05, 100, 15), which would find the 5th percentile instead of the 95th percentile - the bottom boundary rather than the top boundary you need. Choice B has qnorm(0.05, 15, 100), which not only uses the wrong probability but also switches the mean and standard deviation parameters. Choice C uses pnorm(0.95, 100, 15), but pnorm() calculates probabilities from x-values, not x-values from probabilities - it's the inverse of what you need.
Remember: when finding percentiles or cutoff points, use qnorm() with the cumulative probability as your first parameter. "Top 5%" means you want the 95th percentile, so use 0.95.The heights of a species of plant are normally distributed with a mean of 30 cm and a standard deviation of 4 cm. A biologist uses the Empirical Rule to state that approximately 95% of the plants have heights between 22 cm and 38 cm. A statistician calculates the exact probability using a normal distribution table. What is the absolute difference between the statistician's exact probability and the biologist's 0.95 approximation?
The heights of adult males in a country are normally distributed with a mean of 70 inches and a standard deviation of 3 inches. The heights of adult females are normally distributed with a mean of 65 inches and a standard deviation of 2.5 inches. What is the probability that a randomly selected male is shorter than a randomly selected female who is at the 80th percentile for female height?
The lifetime of a smartphone battery is normally distributed with a mean of 400 hours of use and a standard deviation of 25 hours. The manufacturer wishes to offer a warranty, replacing any battery that fails before a guaranteed time T. If the company is willing to replace no more than 2.5% of its batteries, what is the maximum number of hours T they can guarantee, rounded to the nearest hour?
The weights of cereal boxes are normally distributed with a mean of 450 grams and a standard deviation of 5 grams. The manufacturer wants to establish a weight range, symmetric about the mean, that contains 90% of all boxes. Which of the following is the correct range?
The heights of a species of plant are normally distributed with a mean of 30 cm and a standard deviation of 4 cm. A biologist uses the Empirical Rule to state that approximately 95% of the plants have heights between 22 cm and 38 cm. A statistician calculates the exact probability using a normal distribution table. What is the absolute difference between the statistician's exact probability and the biologist's 0.95 approximation?
A statistics software package provides the function qnorm(p, mean, sd), which returns the value x such that P(X≤x)=p. To find the value that separates the top 5% of scores from the bottom 95% for a distribution N(100,15), what would be the correct syntax?
qnorm() function finds the x-value (quantile) where a given probability falls below that point.
The question asks for the value separating the top 5% from the bottom 95%. This means you want the 95th percentile - the point where 95% of values fall below and 5% fall above. Since qnorm(p, mean, sd) returns the x-value where P(X≤x)=p, you need p=0.95 to find where 95% of the distribution lies below that point.
For a normal distribution N(100,15), the mean is 100 and standard deviation is 15. Therefore, the correct syntax is qnorm(0.95, 100, 15).
Looking at the wrong answers: Choice A uses qnorm(0.05, 100, 15), which would find the 5th percentile instead of the 95th percentile - the bottom boundary rather than the top boundary you need. Choice B has qnorm(0.05, 15, 100), which not only uses the wrong probability but also switches the mean and standard deviation parameters. Choice C uses pnorm(0.95, 100, 15), but pnorm() calculates probabilities from x-values, not x-values from probabilities - it's the inverse of what you need.
Remember: when finding percentiles or cutoff points, use qnorm() with the cumulative probability as your first parameter. "Top 5%" means you want the 95th percentile, so use 0.95.A company's automated packaging system fills bags of coffee beans. The target weight is 500 grams, but the actual weights are normally distributed with a mean of 502 grams. If the company observes that 10% of the bags weigh more than 508 grams, what is the standard deviation of the filling process, in grams?
A variable X is normally distributed with mean μ and standard deviation σ. What is the approximate probability that a randomly selected value of X falls between μ−1.5σ and μ−0.5σ?
A data analyst is studying IQ scores, which are modeled by a normal distribution with a mean of 100 and a standard deviation of 15. To find the IQ score that a person must achieve to be in the top 2% of the population, the analyst uses a calculator function invNorm(area, μ, σ), where area is the cumulative area to the left of the desired value. Which of the following represents the correct use of this function?
invNorm function requires the cumulative area to the left of the value. This area is 1−0.02=0.98. The mean (μ) is 100 and the standard deviation (σ) is 15. Therefore, the correct syntax is invNorm(0.98, 100, 15).A manufacturing process produces ball bearings with a diameter that is normally distributed with a mean of 5.00 mm and a standard deviation of 0.02 mm. A ball bearing is considered defective if its diameter is smaller than 4.97 mm or larger than 5.03 mm. What proportion of ball bearings are defective?
The 16th percentile of a normally distributed dataset is 250, and the 84th percentile is 350. What is the standard deviation of this distribution?
The area under the standard normal curve to the right of a value z1 is 0.35. What is the area under the standard normal curve to the left of −z1?