Suppose that there are $n$ randomly ordered numbers. I would like to pick $m$ of them such that I have picked the largest number with a probability of $p$
As a numerical example; the number from 1 to 100 are ordered randomly in a set $S = \{s_1, s_2, \dots, s_n\}$. Suppose that there exists a set $Q \subseteq S$ in which the number $100$ exists by $90\%$ probability. What is the cardinality of $Q$?
If $Q = S$, then the probability is $100\%$. How can I approach further?
Make sure that $\frac mn\ge p$, i.e., let $m=\lceil np\rceil$. Indeed, whatever subset of size $m$ you pick, the probability that a specific (e.g., the largest) element is in that subset is $\frac mn$.