Given positive integer and a convex polygon , namely . No diagonals of are concurrent. Proof that it is possible to choose a point inside every quadrilateral not on diagonals of , such that the points chosen are distinct, and any segment connecting these points intersect with some diagonal of P.
Problem 1755
Official solution
Given a positive integer and a convex polygon with vertices , we need to prove that it is possible to choose a point inside every quadrilateral (where ) such that the chosen points are distinct and any segment connecting these points intersects some diagonal of .
Define an intersection point to be the intersection of two diagonals within . If no three diagonals of are concurrent, then each intersection point is uniquely defined by the intersection of two diagonals and , so is in the interior of quadrilateral .
The diagonals of divide it into several regions. We wish to show that each intersection point may be assigned a unique region touching it. If this assignment is possible, then is contained in the quadrilateral , and we choose a point within . The chosen points will all lie in different regions, so any segment connecting two of the chosen points must intersect some diagonal of .
Lemma. If some (at least one) intersection points are colored blue, there is a region containing exactly one blue point on its perimeter.
Proof of Lemma. Note that each intersection point touches exactly four regions. Suppose each of the four regions touching blue point have another blue vertex (all distinct from , but there may be repeated points among them). If we extend the diagonals through to infinite lines, the entire plane is divided into four sectors, each containing respectively (they may lie on the boundaries of the respective sectors). Therefore, lies in the convex hull of .
Thus, pick a blue point on the convex hull of the set of all blue points. It must touch a region that has no blue point other than , which proves the Lemma.
Initially, color all intersection points blue. Then, repeatedly apply the Lemma to find region with sole blue vertex ; assign to , and remove the color from . Eventually, each intersection point is assigned a region touching it. If two intersection points and were assigned the same region , where without loss of generality was assigned the region first, then would have been a second blue vertex of , contradiction. Therefore, the assigned regions are unique, and the question statement follows.
The answer is: