A group of n people all have distinct heights. They are waiting in a straight line at the bank (one person in front of the other), with all orderings of the people equally likely. A person can see ahead to the front of the line if they are taller than everyone in front of them.
- (a) What is the probability that the ith person in line can see to the front of the line (where the first person is at the front of the line, the second person is behind the first, etc.)?
- (b) What is the expected number of people in line that can see to the front of the line? (Hint: Linearity of expectation.)
There are n! ways to arrange those people in line. For the first person to see in line: nC1, then for the ith person it is going to be nCi?
I am not sure how to approach (b)? Any hint or advice is helpful!