MEAN
years; the
standard deviation is STDDEV
years.
Use the empirical rule (68 - 95 - 99.7\%)
to estimate the probability of a ANIMAL living longer than
roundTo( 1, MEAN + STDDEV * Z )
years.
We know the lifespans are normally distributed with an average lifespan of
MEAN
years.
We know the standard deviation is STDDEV
years, so one
standard deviation below the mean is
roundTo( 1, MEAN - STDDEV )
years
and one standard deviation above the mean is
roundTo( 1, MEAN + STDDEV )
years.
Two standard deviations below the mean is
roundTo( 1, MEAN - STDDEV * 2 )
years
and two standard deviations above the mean is
roundTo( 1, MEAN + STDDEV * 2 )
years.
Three standard deviations below the mean is
roundTo( 1, MEAN - STDDEV * 3 )
years
and three standard deviations above the mean is
roundTo( 1, MEAN + STDDEV * 3 )
years.
We are interested in the probability of a ANIMAL living longer than
roundTo( 1, MEAN + STDDEV * Z )
years.
The empirical rule (or the 68-95-99.7\%
rule)
tells us that \green{EMPIRICAL\%}
of the ANIMALS will have lifespans within
abs( Z ) standard deviation of the average lifespan.
The empirical rule (or the 68-95-99.7\%
rule)
tells us that \green{EMPIRICAL\%}
of the ANIMALS will have lifespans within
abs( Z ) standard deviations of the average lifespan.
The remaining roundTo( 2, 100 - EMPIRICAL )\%
of the ANIMALS will have lifespans that fall outside the shaded area.
Because the normal distribution is symmetrical, half
(\green{roundTo( 2, ( 100 - EMPIRICAL ) / 2 )\%})
will live less than roundTo( 2, MEAN - STDDEV * abs( Z ) )
years
and the other half
(\green{roundTo( 2, ( 100 - EMPIRICAL ) / 2 )\%})
will live longer than roundTo( 2, MEAN + STDDEV * abs( Z ) )
years.
The probability of a particular ANIMAL living longer than
roundTo( 1, MEAN + STDDEV * Z )
years is
\green{EMPIRICAL\%} +
\green{roundTo( 2, ( 100 - EMPIRICAL ) / 2 )\%}
, or
ANSWER\%
.
The probability of a particular ANIMAL living longer than
roundTo( 1, MEAN + STDDEV * Z )
years is
\green{ANSWER\%}
.
Use the empirical rule (68-95-99.7\%)
to estimate the probability of a ANIMAL
living less than roundTo( 1, MEAN + STDDEV * Z )
years.
We are interested in the probability of a ANIMAL living less than
roundTo( 1, MEAN + STDDEV * Z )
years.
The probability of a particular ANIMAL living less than
roundTo( 1, MEAN + STDDEV * Z )
years is
\green{EMPIRICAL\%} +
\green{roundTo( 2, ( 100 - EMPIRICAL ) / 2 )\%}
, or
ANSWER\%
.
The probability of a particular ANIMAL living less than
roundTo( 1, MEAN + STDDEV * Z )
years is
\green{ANSWER\%}
.
Use the empirical rule (68-95-99.7\%)
to estimate the probability of a ANIMAL living between
roundTo( 1, MEAN + STDDEV * Z1 )
and roundTo( 1, MEAN + STDDEV * Z2 )
years.
We are interested in the probability of a ANIMAL living between
roundTo( 1, MEAN + STDDEV * Z1 )
and
roundTo( 1, MEAN + STDDEV * Z2 )
years.
The empirical rule (or the 68-95-99.7\%
rule)
tells us that \green{EMPIRICAL1\%}
of the ANIMALS will have lifespans within
abs( Z_MAX ) standard deviation of the average lifespan.
The empirical rule (or the 68-95-99.7\%
rule)
tells us that \green{EMPIRICAL1\%}
of the ANIMALS will have lifespans within
abs( Z_MAX ) standard deviations of the average lifespan.
It also tells us that \green{EMPIRICAL2\%}
of the ANIMALS
will have lifespans within Z_MIN
standard deviation of the mean.
It also tells us that \green{EMPIRICAL2\%}
of the ANIMALS
will have lifespans within Z_MIN
standard deviations of the mean.
That leaves EMPIRICAL1\% - EMPIRICAL2\% =
roundTo(2, EMPIRICAL1 - EMPIRICAL2)\%
of ANIMALS between
Z_MIN
and Z_MAX
standard deviation of the mean, or
\red{roundTo(2, (EMPIRICAL1 - EMPIRICAL2) / 2)\%}
on either side of the distribution.
That leaves EMPIRICAL1\% - EMPIRICAL2\% =
roundTo(2, EMPIRICAL1 - EMPIRICAL2)\%
of ANIMALS between
Z_MIN
and Z_MAX
standard deviations of the mean, or
\red{roundTo(2, (EMPIRICAL1 - EMPIRICAL2) / 2)\%}
on either side of the distribution.
The probability of a particular ANIMAL living between
roundTo( 1, MEAN + STDDEV * Z1 )
and
roundTo( 1, MEAN + STDDEV * Z2 )
years is
\red{roundTo( 2, ( EMPIRICAL1 - EMPIRICAL2 ) / 2 )\%}
.
\red{roundTo( 2, ( EMPIRICAL1 - EMPIRICAL2 ) / 2 )\%} +
\green{EMPIRICAL2\%}
, or roundTo( 2, AREA )\%
.
The probability of a particular ANIMAL living between
roundTo( 1, MEAN + STDDEV * Z1 )
and
roundTo( 1, MEAN + STDDEV * Z2 )
years is
\red{roundTo( 2, ( EMPIRICAL1 - EMPIRICAL2 ) / 2 )\%}
.
\green{EMPIRICAL2\%} +
\red{roundTo( 2, ( EMPIRICAL1 - EMPIRICAL2 ) / 2 )\%}
, or
roundTo( 2, AREA )\%
.
The probability of a particular ANIMAL living between
roundTo( 1, MEAN + STDDEV * Z1 )
and
roundTo( 1, MEAN + STDDEV * Z2 )
years is
\green{roundTo( 2, AREA )\%}
.