Suppose we're given a convex polygon $P$ and a point $q$ inside $P$, and we would like to find the closest point on the boundary of the polygon. Note that the distance from a point to a line is defined as the shortest distance from that point to the line.
If the polygon has $n$ vertices, it is easy to solve this problem in $O(n)$ time: compute the distance to every edge and find the minimum. In the review session today, we also wanted to show that this is optimal, but we ran out of time.
Now we will prove an $\Omega(n)$ lower bound. In particular, we will show that no algorithm which look at $\leq n/2$ queries can correctly find the closest point. Here's a proof sketch, based on an adversarial argument. The problem instance that we will use consists of a regular $n$-gon centered at the origin, and a query point $q = (0,0)$. After the algorithm finishes "looking" at $k \leq n/2$ points and produces an answer, there will still be points which the algorithm has not seen. We can therefore freely move these points, as long as we maintain convexity of the polygon: in particular, we will move some of these points so that the answer the algorithm gave was wrong (convince yourself that this can be done).