Question: I pick a constant $a$ between 0 and 1. You repeatedly draw random numbers as follows. The first random number is drawn uniformly from (0,1); the second random number is drawn uniformly between 0 and the first number. Each subsequent random number is drawn uniformly between 0 and the previous number. You stop until you obtained a random number that is below a. Find the expected number of drawings as a function of a. (Hint: condition on the first number)
If $X_1, X_2,$ ... is the sequence of random number drawings
and $M_a = \min( n \geq 1: X_n < a)$ is the number of minimum drawings until we draw a number less than a.
I know that $P(M_a=1) = P(X_1 < a) = a$.
My professor said that we should suppose
$P(M_a=k) = \frac{e^{-(-\log a)(-\log a)^{k-1}}}{(k-1)!}$
Does anyone mind explaining why we can assume this?
Also, he mentioned that
$$P(M_a=k+1) =\int_0^1 E(M_a=k+1 | X1=x) \,dx$$
Can someone explain the logic behind this integral?
Thank you!