Given $N$ points in a plane, find the 2 points that are closest on the plane. $\ell_2$ norm
$T(n)=2T(n/2) + \Theta(n)$ $=\mathcal{O}(n\log n)$
2 Dimensional gift wrapping: find convex wrap around odd shape (Convex hall)
Given $n$ points in $\R^2$, find convex polygon on the boundary
Assume all $x$ and $y$ coordinates are distinct
There are no 3 points on the same line
$P$ is the class of all problems solvable in polynomial time.
Take some verifier $V$ which is some polynomial-time machine.
$NP$ is the class of all problems that are easy to verify in polynomial time. (Using some verifier $V$)
Completeness: if $x\in L$, then $P$ has a $w$ that makes $V$ accept
Soundness: if $x \notin L$, $P$ has no way of convincing $V$ to accept