CS Wiki | Cedric Schwyter

Geometric Algorithms (TODO)

Geometric Algorithms (TODO)

Smallest Enclosing Circle

Let be a given set of points on a plane. We want to find the circle such that encloses all points in and such that the radius of is as small as possible. For a circle we denote by the circular disk which is enclosed by (closed, thus including ). We allow points in to also lie on - they do not have to lie strictly within the circle.

📌 For every (finite) set of points in there exists a unique smallest enclosing circle .

📌 For every (finite) set of points in with there exists a subset such that and .

This lemma immediately allows a -time algorithm for computing . We can then introduce a bit of randomization to the algorithm to try to optimize it a little, which fails however as they still both have the same asymptotic time complexity:

Untitled

Untitled

We could try to draw more than just 3 points in each iteration to have a higher chance of including the 3 defining points, to for example 11 points instead. This however effects no change in the asymptotic runtime, as one can verify. To really speed up the computation we can introduce another key idea: we weight the points outside the of doubly in every iteration.

Untitled

📌 Let be natural numbers and .

We generate randomly as follows:

Untitled

It then holds that for all .

With this lemma we can thus draw points from in such a way that the probability of a point is proportional to the number of its copies. If we now respect points we’ve already drawn then we can compute our desired subset consisting of 11 points of in .

📌 Let be a set of (not necessarily distinct) points and for let be randomly, uniformly distributed in . Then the expected number of points of that are outside of is at max .

📖 The algorithm computes the smallest enclosing circle of in expected time .

This algorithm is a variation of the algorithm of Clarkson. There exist randomized algorithms that compute optimally in linear time.

Sampling Lemma

💡 Let be a finite set with elements and let be an arbitrary function on into an arbitrary codomain. We define

We call elements in violators of and elements in extreme in .

We can see that . Our goal is to gather understanding about how big is when is randomly chosen with given .

Example: Smallest Number

Let be a finite subset of the naturals. For let , with . The following holds:

  • (for )
  • .

Clearly, for it holds that and is the amount of elements in that are smaller than , i.e., is the rank of in , where the rank of is the index of in the ascendingly sorted sequence of elements of .

Example: Smallest Enclosing Circle

Let be a finite set of points. For let be the smallest enclosing circle of (with ). is exactly the set of points outside of and we already saw that .

The sampling lemma relates the number of violating elements to the number of extreme elements.

📌 (Sampling Lemma).

Let . We set and , where is a subset of with elements that is random, uniformly distributed from . The for it holds that

📎 If we choose elements from a set of numbers randomly, then the expected rang of the minimum of in exactly .

If we choose points from a set of points in a plane randomly, then the expected number of points of outside of is at max .

Convex Closure

This project is maintained by D3PSI