Probability and gauss integral

Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
2 replies · 3K views
squaremeplz
Messages
114
Reaction score
0

Homework Statement



1) Find the area under the curve for:
a) P( 0 <= Z <= 2.07)
b) P(-.64 <= Z < -.11)
c) P( Z > -1.06)
d) P(Z < -2.33)
e) P(Z >= 4.61)

2) a) Evaluate integral from 0 to 1.24 of e^(-x^2/2)
b) Evaluate the integral from -inf to inf of 6*e^(-x^2/2)

Homework Equations



Z value table
Power series expansion of e^x

The Attempt at a Solution



1)
a) Fz(2.07) - Fz(0) = .9808 - .5 = .4808
b) Fz(-.64) - Fz(a) = .4247 - .2611 = .163
c) 1 - Fz(-1.06) = .85
d) .0104
e) .00002

Can someone explain to me the difference in calculating an area where Z < x vs. Z <= x. Do I just use the value closest to x and less than it on the table for Z < x?
2) a)I used the power series expansion and dervied each term upto n = 4 and got
.6807
b) No clue how to do this. Polar coordinates?
 
Physics news on Phys.org
With the standard normal distribution (indeed, any continuous probability distribution)
there is no difference working with [tex]<[/tex] and [tex]\le[/tex], so that

[tex] P(Z < z) = P(Z \le z)[/tex]

As an example

[tex] P(Z < 1.24) = P(Z \le 1.24)[/tex]

Both can be found from a table or software.

For the integral problem, consider this. If I use [tex]Z = 2.1[/tex]

[tex]\begin{align*}<br /> P(Z \le 2.1) & = \int_{-\infty}^{2.1} \frac 1 {\sqrt{2 \pi}} e^{-{x^2}/2} \, dx\\<br /> & = \int_{-\infty}^0 \frac 1 {\sqrt{2 \pi}} e^{-{x^2}/2} \, dx + \int_0^{2.1} \frac 1 {\sqrt{2 \pi}} e^{-{x^2}/2} \, dx \\<br /> & = 0.5 + \frac 1 {\sqrt{2 \pi}} \int_0^{2.1} e^{-{x^2}/2} \, dx<br /> \end{align*}[/tex]

If you rearrange terms you find that

[tex] \int_0^{2.1} e^{-{x^2}/2} \, dx = \sqrt{2 \pi} \left(P(Z \le 2.1) - .5 \right)[/tex]

None of the terms on the right require a series expansion.
This idea should help you with your integral questions.
 
Great explanations.

a) = sqrt(2pi) * (P(Z <= 1.24) - .5)
b) = sqrt(2pi)/6

Is this right? Thanks.