GeometryDifficulty 4.8AIMEFind the answerUnited States
Problem: A collection S of 10000 points is formed by picking each point uniformly at random inside a circle of radius 1. Let N be the expected number of points of S which are vertices of the convex hull of the S. (The convex hull is the smallest convex polygon containing every point of S.) Estimate N.
An estimate of E>0 will earn max(⌊22−∣E−N∣⌋,0) points.
Proposed by: Shengtong Zhang
Solution
Solution: Here is C++ code by Benjamin Qi to estimate the answer via simulation. It is known that the expected number of vertices of the convex hull of n points chosen uniformly at random inside a circle is O(n1/3). See "On the Expected Complexity of Random Convex Hulls" by Har-Peled.
Want a route through all this instead of an archive? The track
puts 2,000 problems in a working order, from AMC 10 level to the IMO shortlist.
Source: MathNet,
licensed CC-BY-4.0.
Statement reproduced verbatim; metadata (topic, difficulty) added by this project.