I'm stuck on answering a problem in the famous Berteskas & Tsitsiklis probability book:
The premise
Imagine a TV game show where each contestant i spins an infinitely calibrated wheel of fortune, which assigns him/her with some real number with a value between 1 and 100. All values are equally likely and the value obtained by each contestant is independent of the value obtained by any other contestant.
Let N be the integer-valued random variable whose value is the index of the first contestant who is assigned a smaller number than contestant 1. As an illustration, if contestant 1 obtains a smaller value than contestants 2 and 3 but contestant 4 has a smaller value than contestant 1 (X4 < X1), then N = 4. Find P(N > n) as a function of n.
What I did for the first part, finding $P(N > n)$, I saw that it was a geometric distribution, with the chance that a number is larger than a given $n$, is $(100-n)/99$, since the random variable of the wheel # is uniformly distributed.
Thus, for the given geometric distribution, if we want $N$-th roll to be the roll where the number is first lesser than the 1st roll, we must give the following probability:
$P(N \gt n) = ((100-n)/99)^{N-1} ((n-1)/99)$ Which is effectively saying we want the first $N-1$ rolls to be greater than the first roll, and the last one to be the complement, or:$1-(100-n)/99 = (n-1)/99$.
So now that we have this, assuming it's correct, I'm stuck on the following:
Find E[N], assuming an infinite number of contestants.
I know that the expected value formula is the following:
$ sum_{x=2}^{\infty} xp_x(x)$ where x is the index of the contestant. However, the contestant's probability also relies on the value of the initial value of the first spin. Is the next logical step to decompose into a double sum and evaluate that? Or is it something completely different?