So I'm traversing this trivia book which has a question that has intrigued and widely confused me.
1.) Since we have $n$ number of elements, then the probability of it being the largest among the $n$ choices is $\frac{1}{n}$, which seems intuitive.
2.) The probability of it being larger than the second number $x_{2}$ is: either it will be larger or not, therefore $\frac{1}{2}$. Similarly, now this process is repeated $(n-1)$ times to check whether $x_{1}$ is larger than all other elements. Then the probability we will arrive at is : $\frac{1}{2^{n-1}}$
I equally believe in both processes, but of course, one is wrong. Apart from knowing which is right, it will be helpful to elucidate on why the other is wrong.
If they are, as I said, indepent and identically distributed (iid), say you throw that Dragon's Egg 20 times, then your first answer ($1/n$) is correct. That's because while each throw's result $x_i$ is independent from each other, the comparison of results are not. Inituituvely, if you tell me that $x_1$ is smaller than $x_2,\ldots x_{19}$, then
– Ingix Oct 21 '22 at 08:21