Continous Probability Practice Problems

Important! These are all exam-level problems. Do not attempt these problems without a solid foundation in the subject and use them for exam practice.

1. Suppose we have F(x) = ceg|x| for a continous random variable x, with x ranging from -oo to +oo. What values can g take on for this to be a valid probability density function?

 First, let's note that c doesn't matter too much for this question. We should also know that the area under the curve of the probability density function in the range given must be 1. But, this area will be infinite if e is raised to any positive power or 0, hence, g must be less than 0 in order to prevent this.  
Toggle Solution

2. Consider the following game. Spin a wheel and wait until it comes to rest at some x between 0 and 359. The amount of money won is x/36 - 6 dollars. Let Y be a random variable for your winnings. First, define a probability density function. From there, calculate the expectation and variance.

For the probability density function, we know that the area under the curve must be 1. We know that we can either lose a maximum of -6 dollars or win a maximum of ~4 dollars, so our random variable Y can only range in between there. What will be the value at those points? We have 10 values and we need the area of this rectangle to be 1, so f(y) is 1/10 in this area between -6 <= y <= 4, and 0 elsewhere. 

Expectation: ∫ from -oo to oo of yf(y)dx which is actually ∫ from -6 to 4 of y/10dy, which evaluates to 1/20 * (16-36) = -1. 

Variance: ∫ from -oo to oo of (y-E[Y])2f(y)dy which is actually ∫ from -6 to 4 of (y+1)2/10 dy which evaluates to 1/30 * (125+125) = 25/3.
Toggle Solution

3. Suppose a brand new lightbulb has been installed in a classroom, and its lifespan is exponentially distributed with a mean of 50 days. What is the probability that the lightbulb will be broken in 30 days?

Let X be the lifespan of the lightbulk. The parameter λ is 1/mean, which is 1/50. Hence, Pr[X < 30] = ∫ from 0 to 30 of 1/50 * e-x/50dx, which simplifies to 1-e-30/50. 
Toggle Solution