We remind that for the normally distributed random variable with a mean of 20 and a standard deviation of 4 one has (see e.g., https://www.itl.nist.gov/div898/handbook/eda/section3/eda3661.htm): . For computations we used the following program in Anaconda (https://www.anaconda.com/):
from scipy import integrate
import numpy as np
import math
func = lambda x:(1/(4*math.sqrt(2)*math.sqrt(math.pi)))*math.exp(-1/2*((x-20)/4)*((x-20)/4))
e = integrate.quad(func, a,b)
Instead of a and b we inserted values that we are interested in.
(a) The aim is to find : . We substitute different values of in:
and get: .
(b) We look for such that: . By substituting different choices of we get: .
(c) The aim is to find such that: . We get: . Now we look for satisfying . We find that .
(d) The aim is to find : . We get: .
Comments