Add Problem

Unit 02



Topics
#A computing the distribution induced by a random variable #B pmf properties #C pdf properties #D cdf of a discrete RV #E cdf of a continuous rv #F functions of random variables #G discrete joint marginal and continuous distributions #H continuous joint marginal and continuous distributions #I independent random variables
Problems
# A computing the distribution induced by a random variable
# B pmf properties
# C pdf properties
# D cdf of a discrete RV
# E cdf of a continuous rv
# F functions of random variables
# G discrete joint marginal and continuous distributions
# H continuous joint marginal and continuous distributions
# I independent random variables
Hard
Problem 2: (Concert Time)

You are excited about a concert featuring your favorite a cappella group: the Pitch Estimators. Tickets go on sale at noon, but before you can buy a ticket, you have to wait for your turn in an online waiting room. Because tickets are in high demand, you enlist two of your friends to help you. All three of you enter the waiting room at noon, and as soon as any one of you gets a ticket, you are done and can all sign off.

Suppose your waiting time in minutes is a continuous random variable $T$. Your first friend's waiting time in minutes is a continuous random variable $U$. Your second friend's waiting time in minutes is a continuous random variable $V$.

Suppose these random variables are are mutually independent and have probability density functions given by:

$$f_T(t)=\begin{cases} \frac{1}{3}e^{-\frac{1}{3}t}, &t \geq 0\ 0, &otherwise \end{cases}$$

$$f_U(t)=\begin{cases} \frac{1}{2}e^{-\frac{1}{2}t}, &t \geq0\ 0, &otherwise \end{cases}$$

$$f_V(t)=\begin{cases} \frac{1}{6}e^{-\frac{1}{6}t}, &t\geq 0\ 0, &otherwise \end{cases}$$

These are examples of what we call exponential random variables.

a. Please sketch the probability density for all three random variables on one graph.

b. For a particular time $t$, compute the probability that $T>t$, $U>t$, and $V>t$.

c. Let $O$ represent your overall waiting time. $O$ is the minimum of the waiting times for each of the three websites, $O = min(T,U,V)$. Compute the probability density function of $O$. (Hint: use the previous answer to write down the cdf)


Solution