\mu = MEAN and \sigma = STDDEV.
What percentage of test-takers had a grade between GRADES[0]
and GRADES[1] on the exam?
Use the cumulative z-table provided below. Round to two decimal places.
A cumulative z-table shows the probability that a standard normal variable will be less than a certain value (z).
In order to use the z-table, we first need to determine the z-scores of the two grades which we were given.
Recall that we can calculate the z-scores by subtracting the
mean (\mu) from
each exam grade and then dividing by the standard
deviation (\sigma).
\large{\quad z \quad = \quad
\dfrac{x - \pink{\mu}}{\green{\sigma}}
\quad = \quad \dfrac{grade - \pink{MEAN}}{\green{STDDEV}}
\quad = \quad ZSCORES[index]}
We can find the percentage of test-takers that earned between
GRADES[0] and GRADES[1]
by finding the area between ZSCORES[0] and
ZSCORES[1] under the standard normal curve. After
looking up these two z-scores in our z-table, subtracting the two table
values will provide us with the total area.
Since the normal curve is symmetrical, the area less than
ZSCORES[1] is equal to the area
greater than abs( ZSCORES[1] ), which can
be found by looking up abs( ZSCORES[1] )
on the z-table and subtracting the table value from 1, the
total area under the curve.
1 - ZGRID[ ROW_INDEX_2 ][ COL_INDEX_2 ] =
roundTo( 4, 1 - ZGRID[ ROW_INDEX_2 ][ COL_INDEX_2 ] ).
This value,
roundTo( 4, 1 - ZGRID[ ROW_INDEX_2 ][ COL_INDEX_2 ] ),
represents the portion of the population that scored lower than
GRADES[1] on the exam.
Look up ZSCORES[1] on the z-table. This value,
ZGRID[ ROW_INDEX_2 ][ COL_INDEX_2 ],
represents the portion of the population that scored lower than
GRADES[1] on the exam.
Since the normal curve is symmetrical, the area less than
ZSCORES[0] is equal to the area
greater than abs(ZSCORES[0]), which can
be found by looking up abs(ZSCORES[0])
on the z-table and subtracting the table value from 1, the
total area under the curve.
1 - ZGRID[ROW_INDEX_1][COL_INDEX_1] =
roundTo(4, 1 - ZGRID[ROW_INDEX_1][COL_INDEX_1]). This value,
roundTo(4, 1 - ZGRID[ROW_INDEX_1][COL_INDEX_1]),
represents the portion of the population that scored lower than
GRADES[0] on the exam.
Look up ZSCORES[0] on the z-table. This value,
ZGRID[ ROW_INDEX_1 ][ COL_INDEX_1 ],
represents the portion of the population that scored lower than
GRADES[0] on the exam.
Finally, subtract the two cumulative areas to arrive at our final answer:
\blue{
roundTo(4, 1 - ZGRID[ROW_INDEX_2][COL_INDEX_2])
roundTo(4, ZGRID[ROW_INDEX_2][COL_INDEX_2])
} - \orange{
roundTo(4, 1 - ZGRID[ROW_INDEX_1][COL_INDEX_1])
roundTo(4, ZGRID[ROW_INDEX_1][COL_INDEX_1])
} = ANSWER
Thus, roundTo( 2, ANSWER * 100 )\%
of the test-takers scored between GRADES[0] and
GRADES[1] on the course( 1 ) exam.