Chapter 8 Continuous Probability Distributions Flashcards

1
Q

Continuous probability distributions

A

Used to calculate the probability associated with an interval variable

Can use a continuous distribution to approximate a discrete distribution

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Continuous random variable

A

Random variable that can assume an uncountable number of values

Probability of each individual value is virtually 0, must determine probability for range

Sum of all probabilities still = 1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Probability density function requirements

A

F(x) with range a<=x <=b

  • f(x)>=0 for all x between a and b
  • total area under the curve f(x) between a and b is 1

Probability that a variable is in the given range is the area of the curve under the function for that range

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Uniform probability distribution

A

Aka rectangular probability distribution

f(x) = 1/(b-a)

Where a<=x<=b

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Probability for interval with uniform distribution

A

Area of rectangle whose base is x2-x1 and whose height is 1/(b-a)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Normal density function

A

Probability density function for a normal random variable

f(x)= 1/(standard deviationsqrt of 2π) * e^ -1/2((x-mean)/standard deviation)^2

For values of x between - infinity and infinity

Bell curve

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Normal distribution

A

Function creates a symmetric curve around the mean

Described by the mean and the standard deviation

Increasing the mean shifts the curve right, decreasing the mean shifts the curve left (along the x axis)

Increasing the standard deviation widens the curve, decreasing narrows it

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Calculating normal probabilities

A

The probability that a normal random variable falls into an interval is the area of the interval under the curve

Instead of doing for any given curve rather standardize the normal random variable and then use the table for cumulative area/probability to that variable

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Standard normal random variable

A

For any X (normal random variable)

Z(standard normal random variable)= (X - mean)/ standard deviation

The area under the standard normal distribution is 1 so the cumulative probabilities for each point are known values

Value of Z is the number of standard deviations x is from mean

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

To determine probability of random variable greater than a value of z

A

Use complement Rule

P(Z>#) = 1 - P(Z

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Probability z is between two numbers

A

Cumulative probability of higher number less cumulative probability of lower number

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Limits of area under standard deviation

A

P(Z3.10) approx 0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Finding the value of Z given a particular probability

A

Use Z(subscript A) to represent the value of Z such that the area to it’s right under the standard normal curve is A

P(Z>ZA)= A

First must find the compliment of A (1-A)
Then find that value on the table and figure out what value of Z is associated with it

If between two z values must find average of those two

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Finding value of - ZA

A

Simply the negative value of ZA.

Because the standard normal curve is symmetric around 0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Finding value of X given area ZA

A

Find complement 1- A
Find corresponding value of Z using table

Use standardizing equation to solve for x

Z(known) = (x- mean)/standard deviation

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

ZA percentile

A

For a value of ZA

That value of Z marks the 100*(1-A)th percentile

17
Q

To compute cumulative normal distribution probabilities

A

=NORMDIST(X, mean, standard deviation, TRUE)

will never use false because it will give the meaningless non-cumulative probability

18
Q

To find the cumulative probability of Z for a standard normal probability

A

= NORMDIST(Z)

19
Q

To find value of Z for a given A (standard normal distribution)

A

=NORMSINV(1-A)

20
Q

To find the value of x for a given probability A (normal distribution)

A

=NORMINV((1-A), mean. Standard deviation)

21
Q

Exponential probability density function

A

Probability density of random variable x represented by:

F(x)=lambdae^(-lambdax)

Where X >=0

And mean = standard deviation = 1/lambda

F(0)=lambda
F(x) approaches 0 as x approaches infinity

Useful for time probability functions

22
Q

Probability associated with an exponential random variable

A

If X is an exponential random variable

P(X>x) = e^(-lambda*x)
P(X

23
Q

Cumulative exponential probability in excel

A

=EXPONDIST(X, lambda, True)