12

here's a question I got for homework (sorry if my translation is a bit unclear):

Let $X\sim‬G(p_1)$, $Y\sim ‬G(p_2)$, $X$ and $Y$ are independent. Prove that the minimum is also geometric, meaning: $\min(X,Y)\sim G(1-(1-p_1)(1-p_2))$.

Instructions: first calculate the probability $P(\min(X,Y) > k)$ and compare it to the parallel probability in (of?) a geometric random variable.

I have no idea where to start, even with the great clue that they've supplied. Any hints?

yotamoo
  • 2,753

1 Answers1

14

Let $X$ and $Y$ be independent random variables having geometric distributions with probability parameters $p_1$ and $p_2$ respectively. Then if $Z$ is the random variable $\min(X,Y)$ then $Z$ has a geometric distribution with probability parameter $1-(1-p_1)(1-p_2)$.

There are essentially two ways to see this:

First, the method outlined by the hint in your homework - Note that the cdf of $X$ is $1-(1-p_1)^k$ and the cdf of $Y$ is $1-(1-p_2)^k$, so the probability that $X>k$ is $(1-p_1)^k$ and the probability that $Y>k$ is $(1-p_2)^k$ and so the probability that both are greater than $k$ is $\left[(1-p_1)(1-p_2)\right]^k$. But the probability that both are greater than $k$ is the same as the probability that the minimum of the two is greater than $k$. From this we can get the cdf of $Z$ as $1-\left[(1-p_1)(1-p_2)\right]^k$, and we can note that this is the cdf of a geometric random variable with probability parameter $1-(1-p_1)(1-p_2)$.

Second, and more intuitively to me, we can go back to the definition of a geometric random variable with probability parameter $p$ : the number of Bernoulli trials with probability $p$ needed to get one success. So $\min(X,Y)$ is the number of trials of simultaneously running a Bernoulli experiment with probability $p_1$ and one with probability $p_2$ before one or the other experiments succeeds. The probability of one of the two experiments succeeding at any step is just $1-(1-p_1)(1-p_2)$, so $Z$ is a geometric random variable with probability parameter $1-(1-p_1)(1-p_2)$.

Falrach
  • 4,102
deinst
  • 5,646
  • As an addendum and a slightly different way of calculating the results, the probability of a "success" on a compound trial is that either of the two separate sub-trials results in a success. This has probability $p_1 + p_2 - p_1p_2$ (using $$P(A\cup B) = P(A) + P(B) - P(A\cap B) = P(A) + P(B) - P(A)P(B)$$ by independence of individual sub-trials) and so we have a geometric random variable with parameter $$p_1 + p_2 - p_1p_2 = 1 - (1-p_1)(1-p_2)$$ just as you found. – Dilip Sarwate Dec 13 '11 at 16:46
  • A minor correction to my comment: in the first line, for "the probability of", please read "the event" – Dilip Sarwate Dec 13 '11 at 18:56