Two pieces of paper, each have an unknown number written on it. You pick one of them and get see the number. Guess if this number is smaller or larger than the other. Instinct might say that is fifty-fifty to guess right. But actually there is a strategy to do better than 1/2. In fact, if the numbers are chosen from Uniform(-1, 1), there is a strategy to guess right with probability 3/4. !! Hint for general strategy: pick a random number and compare. Hint for Uniform(-1, 1): Focus on 0 which divides the number line into 2 halves. What can you say about the chance that both numbers fall to the left or right of 0? Anything interesting?
Pick n random points on the line (0, 1). This creates n+1 segments on the line. What is the distribution of length of the k-th segment? Journey: 1. Try solving for the first segment. 2. Argue that the last segment has the same distribution as the first segment, by symmetry. 3. Surprise: the distribution is the same for all segments. Way to see this: instead of line, think of a circle, and argue by symmetry. The interesting things to note: Sometimes we can solve for simpler / extremal case, and then extend it to other cases by symmetry argument. Application How many cards on average need to be drawn from the deck to get an Ace? The short answer: Mark the top of the deck with a Joker card and arrange them in a circle. The 4As + Joker forms 5 segments on the circle. By symmetry, the length of the segments follow the same distribution and have the same average. The averages must add up to 53. So answer is 53/5. The long answer, if we don't realise the symmetry: Let F(t) be the probabil...