Choose four points randomly on the circumference of a circle with radius $1$. Connect them to form a quadrilateral. What is the expected area of this quadrilateral?
I have attempted to simulate to find an answer but not sure how to approach finding an exact value. The simulation fixes one of the points at $0$ and generates 3 other points uniformly around the circle between $0$ and $2\pi$. Then it orders the points and takes the differences between them to get the 4 central angles of the quadrilateral. From these 4 central angles it finds the length of each side $s_i$ using the formula $s_i=2sin\frac{\theta_i}{2}$. Once I have the four sides I can use Brahmagupta's Formula to find the area $K$ of the quadrilateral. I repeat this 100k times and take the average of $K$ and get $K\approx.96$.