0

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

Uri Goren
  • 2,940
  • Re "we choose 4 angles at random", on the circle or on and inside? – rtybase Aug 05 '17 at 09:59
  • On the circle... – Uri Goren Aug 05 '17 at 10:07
  • The reason I was asking is, if angles are on the circle, then the problem is similar to choosing 4 points on the circle. Then 4 points on the circle must belong to the same half circle. The length of the circle is $l=2\pi R$, half a circle $\frac{l}{2}=\pi R$. Using geometric probability $\Rightarrow P= \frac{1}{2}$ – rtybase Aug 05 '17 at 10:10
  • 2
    A general answer for $n$ points/angles can be found at https://math.stackexchange.com/q/325141/420432 – nickgard Aug 05 '17 at 10:22
  • @rtybase , I didn't understand how did you account for the number $n=4$ in your calculation – Uri Goren Aug 05 '17 at 10:30
  • Easy ... take the initial point ${A_1}$ and map it to $0$, the remaining $A_2,...,A_4$ must fall in $[0, l]$ each with $p=\frac{1}{2} \Rightarrow \frac{1}{8}$. Any of the 4 points can be $A_1$ then $P=\frac{4}{8}=\frac{1}{2}$. It's too late the give the full answer, since the link to the general case was provided. – rtybase Aug 05 '17 at 10:37
  • An equivalent question and answers for $n$ points can be found here: https://math.stackexchange.com/questions/2362636/n-points-are-picked-uniformly-and-independently-on-the-unit-circle-what-is-th/2363309 – awkward Aug 05 '17 at 13:37

2 Answers2

1

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.

1

Out of the 4 angles there are always 3 that are on the same half-circle (including the diameter). Take the first angle to be 0 then the other angles are in [0,$\pi$] or in [$\pi$,$2\pi$] and at least 2 of the 3 angles we have left have to be in the same set.

Quick and dirty for the rest: The 4th angle now has a 0.5 chance of being in the same half-circle. So the chances that the four angles would be at the same half-circle is 0.5

  • It's not true: [0,120,240] (in degrees) – Uri Goren Aug 05 '17 at 10:06
  • Yes it is. 0 and 120 are both in [0, 180] (hence the including the diameter remark) – Erik Jurriën Aug 05 '17 at 10:07
  • I don't know why this was down-voted, it's a reasonable answer! – rtybase Aug 05 '17 at 10:12
  • 1
    It is true that out of 4 angles there will always be three in the same half-circle. However, the rest of the answer is imho not correct. First of all the "fourth angle" is not well defined, what is the "fourth angle" is all 4 angles lie in the same half-circle? Secondly, the "fourth angle" is not independent from the other angles. You introduce this dependency by deciding which angle is the "fourth angle". Lastly, in general, there will be lots of half-circles that contain the first three angles, so the probability that a random angle would lie in one of these is larger than 1/2. – Ward Beullens Aug 05 '17 at 10:16
  • 2
    look at [180,181,182], the 4th angle can be anything not between 0 and 2, a probability much larger than 1/2. – Uri Goren Aug 05 '17 at 10:20
  • For every half circle that includes 180, 181, 182 degrees it is true that a random angle from [0,360] (uniformly dist) has a probability of 0.5 of being on that half circle. We are looking at half circles! – Erik Jurriën Aug 05 '17 at 15:12