Given a circle, we choose 4 angles at random (uniformly distributed).
What are the chances that the four of them would be at the same half-circle ?
The way I thought about solving it, is to define to look at the segment $$[0,2\pi]$$ And define the first angle as $\theta_1=0$,
And then I reduced the question, to
"what is the probability of difference between the max and min being less than pi"
However, my approach is problematic when dealing the cyclic nature of the angle
$$\theta_1=0,\theta_2=\epsilon,\theta_2=2\pi-2\epsilon,\theta_3=2\pi-\epsilon$$
I'd love to hear your ideas on how to approach this problem
In stead of putting $\theta_1 = 0$ like you suggest, you can put $\theta_1 = \pi$. We then have that any semicircle that contains $\theta_1$ is of the form $[a,a+\pi]$ with $a \in [0,\pi]$. So you don't have to worry about the interval being a circle anymore.
Now the question is reduced to: what is the probability that $$ \max(\pi , \theta_2 , \theta_3 , \theta_4) - \min(\pi , \theta_2 , \theta_3 ,\theta_4) $$ is less than $\pi$ , where the $\theta_i$ are uniformly distributed in $[0,2\pi]$? You can convince yourself that this probability is the same as the probability that $$ \max(\theta_2 , \theta_3 , \theta_4) - \min(\theta_2 , \theta_3 ,\theta_4) $$ is less than $\pi$, and you can try to calculate this probability.