On a circular pizza, we make a random straight cut by choosing two uniformly random points on the perimeter and cutting through them.
On average, how many times must the pizza be randomly cut, to get a piece with no curved edge?
(In other words, on average, how many random chords must be drawn on a circle, to get a polygon, if each random chord is drawn by connecting two uniformly random points on the perimeter of the circle?)
In the following example, a piece with no curved edge is obtained by the fifth random cut.
My attempt
I made a pizza cutting simulator on desmos. It seems that the average should be around $7$ or so.
I tried to find the probability that a piece with no curved edge is obtained by the $n$th random cut. But I only worked out that the probability for $n=3$, is $\frac{1}{15}$. (Consider the six points that define three cuts. Start with one point: it must be paired with its opposite point, which has probability $\frac15$. Then one of the remaining points must be paired with its opposite point, which has probability $\frac13$. The remaining two points must be paired together. So the probability is $\frac15\times\frac13=\frac{1}{15}$.)