In a regular $n$-gon, we are allowed to connect any pair of non-adjacent points by a continuous curve. The curve cannot intersect any other curve or side except at endpoints, but can lie outside the polygon. What is the largest number of pairs that we can connect in this way?
If all curves are required to be segments (which would correspond to diagonals), it is known that after drawing $n-3$ diagonals, the polygon is divided into triangles and no further diagonal can be drawn.
Here is a graph-theoretic proof that you can draw at most $2(n-3)$ diagonals. Let $G$ be a graph whose vertices are the $n$ vertices of the polygon and whose edges are the sides and the curves we draw. Suppose $G$ has $m$ edges (therefore, the number of diagonal curves drawn is $m-n$). Let $f$ denote the number of connected regions inside and outside the polygon (both bounded and unbounded regions).
Note that $G$ is a planar graph. By Euler's Formula, $$n-m+f=2\,.$$ Now, each connected region has a boundary formed by at least three edges. Each edge borders exactly two regions. Thus, $$3f\leq 2m\text{ or }f\leq \frac{2}{3}\,m\,.$$ Hence, $$2=n-m+f\leq n-m+\dfrac{2}{3}\,m=n-\frac13\,m\,.$$ This means $$m\leq 3(n-2)=3n-6\,.$$ Hence, $$m-n\leq (3n-6)-n=2n-6=2(n-3)\,.$$ It is easy to see that $2(n-3)$ segments can be drawn. See brainjam's answer for an example.