Dan, Dominic, and Doug are waiting together in the living room for their girlfriends, Sally, Shellie, and Susanne, to call. Their waiting times (in hours) are independent Exponential random variables, with parameters $2.1$, $3.7$, and $5.5$, respectively. What is the probability that the phone will ring (i.e., the first call will arrive) within the next $30$ minutes (i.e., within the next $1/2$ an hour)?
so $\lambda_1 = 1/126$ for Dan
$\lambda_2 = 1/222$ for Dominic
$\lambda_3 = 1/330$ for Doug
Let X represent Dan's waiting time. Y represent Dominic's waiting time. Z represent Doug's waiting time.
$P(X\leq30) = 1 -e^{-30/126}$
$P(Y\leq30) = 1 -e^{-30/222}$
$P(Z\leq30) = 1 -e^{-30/330}$
so $P(min (X,Y,Z) \leq 30) = ???$
I don't know what to do in this last step. The final answer is $0.9965$ But how did they get that answer?

Let's consider two independent exponential random variables, each with a different rate parameter, say $X \sim \operatorname{Exponential}(\lambda)$, $Y \sim \operatorname{Exponential}(\theta)$, with $$F_X(x) = 1 - e^{-\lambda x}, \quad F_Y(y) = 1 - e^{-\theta y}.$$ We construct a new random variable $Z = \min(X,Y)$. How is $Z$ distributed? We note $$\Pr[Z > z] = \Pr[\min(X,Y) > z] = \Pr[(X > z) \cap (Y > z)] \overset{\text{ind}}{=} \Pr[X > z]\Pr[Y > z] = e^{-\lambda z} e^{-\theta z} = e^{-(\lambda + \theta)z}.$$ Hence $$F_Z(z) = \Pr[Z \le z] = 1 - \Pr[Z > z] = 1 - e^{-(\lambda + \theta)z},$$ meaning $Z = \min(X,Y)$ is exponential with rate $\lambda + \theta$, the sum of the rates of $X$ and $Y$. So if we have three independent exponential random variables, the minimum of these waiting times will also be exponential with rate equal to the sum of the individual rates.
Applying this to the question, we then have the probability that the first call to arrive being within the first $30$ minutes is simply $$\Pr[W = \min(X,Y,Z) \le 30] = 1 - e^{-(\lambda_1 + \lambda_2 + \lambda_3)30} = 1-e^{-0.464139} \approx 0.371324.$$ I do not get the claimed answer; it's too large.