Draw $n$ random chords in a circle. Each chord connects two independent uniformly random points on the circle.
Here is an example with $n=40$.
In this example, the centre of the circle (shown in red) is contained by a pentagon.
Let $f(n)=$ expected number of sides of the polygon that contains the centre of the circle.
What is $\lim\limits_{n\to\infty}f(n)$?
(Ignore cases in which the centre of the circle is not contained by a polygon, i.e. is contained by a region with a curved edge.)
I tried, without success, to find the probability $P(n)$ that a random chord is collinear with a side of the centre-enclosing-polygon. Then the answer to the question would be $\lim\limits_{n\to\infty}nP(n)$.
Simulations
I used a random chord generator to run $50$ trials each with $n=10,15,25,40$, and made a graph.
EDIT: In the comments, @ArthurQueiroz provided data from $10^6$ trials up to $n=50$, yielding the following graph.
This is puzzling. Why would $f(n)$ go up, then down? Is there some issue with the simulation?
This is a follow-up question to the question "Draw $n$ random chords in a circle. What is the distribution of the kinds of polygons, as $n\to\infty$?"



.Although the results suggest that f(n) appears non-monotonic beyond a certain point, I believe that f(n) is actually monotonic. The issue likely stems from $10^6$ simulations being insufficient once n surpasses a certain threshold.
– Arthur Queiroz Oct 21 '24 at 00:40