Section 9.2 The Normal Distribution
The normal distribution is also sometimes referred to as the Gaussian Distribution (often by Physicists) or the Bell Curve (often by social scientists).
xxxxxxxxxx
var('x,mu,sigma')
f(x) = e^(-((x-mu)/sigma)^2/2)/(sigma*sqrt(2*pi))
def _(m=slider(-10,10,1,0,label='$\mu$'),s=slider(1/5,5,1/10,1,label='$\sigma$')):
titletext = "Normal Curve with mean "+str(m)+" and standard deviation "+str(s)
G = plot(f(mu=m,sigma=s),(x,m-5*s,m+5*s))
G += point((0,1),size=1)+point((12,0),size=1)+point((-12,0),size=1)
G += point((m,f(x=m,mu=m,sigma=s)),color='red',size=20)
G += point((m+s,f(x=m+s,mu=m,sigma=s)),color='green',size=20)
G += point((m-s,f(x=m-s,mu=m,sigma=s)),color='green',size=20)
show(G,figsize=(5,3),title=titletext,ymin=0,ymax=1,xmin=-15,xmax=15)
Theorem 9.2.2
If \mu = 0 and \sigma = 1\text{,} then we say X has a standard normal distribution and often use Z as the variable name and will use \Phi(z) for the standard normal distribution function. In this case, the density function reduces to
Proof
Convert to "standard units" using the conversion
Theorem 9.2.3 Verifying the normal probability function
Proof
Note that you can convert the integral above to standard units so that it is sufficient to show
Toward this end, consider \(I^2\) and change the variables to get
Converting to polar coordinates using
and
gives
as desired.
Theorem 9.2.4 Verifying the normal probability mean
Proof
implies by solving that
and therefore
and therefore the use of \(\mu\) is warranted.
Theorem 9.2.5 Verifying the normal probability variance
Proof
using integration by parts and using the integration in the proof of the mean above. So, the use of \(\sigma\) is warranted.
Theorem 9.2.6 Properties of the Normal Distribution
Theorem 9.2.7 Normal Distribution Maximum
The maximum of the normal distribution probability function occurs when x = \mu
Proof
Take the derivative of the probability function to get
which is zero only when \(x = \mu\text{.}\) Easily by evaluating to the left and right of this value shows that this critical value yields a maximum.
Theorem 9.2.8 Normal Distribution Points of Inflection
Points of Inflection for the normal distribution probability function occurs when x = \mu + \sigma and x = \mu - \sigma\text{.}
Proof
Take the second derivative of the probability function to get
which is zero only when \(x = \mu \pm \sigma\text{.}\) Easily by evaluating to the left and right of this value shows that these critical values yield points of inflection.
Notice that the work needed to complete the integrals over the entire domain above was pretty serious. To determine probabilities for a given interval is however not possible in general and therefore approximations are needed. When using TI graphing calculators, you can use
Or you can use the calculator below.
xxxxxxxxxx
layout=dict(top=[['a', 'b']],bottom=[['mu','sigma']])) (
def _(a=input_box(-2,width=10,label='a = '),b=input_box(2,width=10,label='b = '),mu=input_box(0,width=8,label='$\mu = $'),sigma=input_box(1,width=8,label='$\sigma = $')):
f = e^(-((x-mu)/sigma)^2/2)/(sigma*sqrt(2*pi))
P = integral_numerical(f,a,b)[0]
print "P("+str(a)+" < X < "+str(b)+") ~= "+str(P)