We are given the equilateral triangle A.
On each edge of the triangle we pick a point:
- randomly (probability distribution is uniform)
- independently of others
We construct new triangle B from randomized points.
Task is to find the chance of B containing the centre of circle circumscribed around triangle A.
I would appreciate hints and pointers. Thanks!
Edit
Suppose $P_0$ is chosen on the bottom line of triangle A. $P_O = (x_0,0), x_0 \in [0,1]$
Let's find geometrical place of points $P_1, P_2$.
If $P_1$ is on the upper left edge, that $P_1 = (x_1,\sqrt 3 x_1), x_1 \in [0, \frac 1 2]$.
Then $P_2$ is upper right edge, and $P_2 = (x_2, \sqrt 3 (1 - x_2)), x_2 \in [\frac 1 2, 1]$.
Centre point is $C = (\frac 1 2, \frac 1 {2 \sqrt 3 })$.
Now, we shall find the constraints for points.
For fixed $x_0$, $P_1$ and $P_2$ must lay below the line between $P_0$ and $C$.
But I wonder, if there is a way to describe constraint better?
Since this most trivial way suffers from situation when line $CP_0$ and one of the edges intersects outside of range $x_m$.
Edit 2
I have listened to the useful hints about advantages of angle-based view on the problem, and believe that now I have the geometry part figured:
As earlier, We fixed $P_0$ on the bottom edge and on the step 1 we pick $P_1$ on the left edge.
Consider $\angle \alpha$ line between bottom edge and line $CP_0$. Then $\alpha \in [\frac \pi 6, \frac \pi 2]$.
Then prohibited sector for left edge has angle $\frac \pi 2 - \alpha$.
Using same logic on the step 2 we obtain prohibited sector for point $P_2$.
And now it looks like I have to get down to all that integration, so your suggestions are welcome!