Geometric separator


A geometric separator is a line that partitions a collection of geometric shapes into two subsets, such that proportion of shapes in each subset is bounded, and the number of shapes that do not belong to any subset is small.
When a geometric separator exists, it can be used for building divide-and-conquer algorithms for solving various problems in computational geometry.

Separators that are closed shapes

A simple case in which a separator is guaranteed to exist is the following:
Thus, R is a geometric separator that separates the n squares into two subset, with a relatively small "loss".

Proof

Define a 2-fat rectangle as an axis-parallel rectangle with an aspect ratio of at most 2.
Let R0 be a minimal-area 2-fat rectangle that contains the centers of at least n/3 squares. Thus every 2-fat rectangle smaller than R0 contains fewer than n/3 squares.
For every t in 0,1), let Rt be a 2-fat rectangle with the same center as R0, inflated by 1 + t.
  • Rt contains R0, so it contains the centers of at least n/3 squares.
  • Rt is less than twice as large as R0, so it can be covered by two 2-fat rectangles that are smaller than R0. Each of these 2-fat rectangles contains the centers of less than n/3 squares. Therefore Rt contains the centers of less than 2n/3 squares.
Now it remains to show that there is a t for which Rt intersects at most O squares.
First, consider all the "large squares" – the squares whose side-length is at least. For every t, the perimeter of Rt is at most 2·perimeter which is at most 6·width, so it can intersect at most large squares.
Next, consider all the "small squares" – the squares whose side-length is less than.
For every t, define: intersect as the set of small squares intersected by the boundary of Rt. For every t1 and t2, if, then. Therefore there is a gap of at least between the boundary of Rt1 and the boundary of Rt2. Therefore, intersect and intersect are disjoint. Therefore:
Therefore by the [pigeonhole principle
there is a certain j0 for which:
The separator we look for is the rectangle Rt, where.

Application example

Using this separator theorem, we can solve certain problems in computational geometry in the following way:
The above theorem can be generalized in many different ways, with possibly different constants. For example:
The ratio of 1:2, in the square separator theorem above, is the best that can be guaranteed: there are collections of shapes that cannot be separated in a better ratio using a separator that crosses only O shapes. Here is one such collection :
Consider an equilateral triangle. At each of its 3 vertices, put N/3 shapes arranged in an exponential spiral, such that the diameter increases by a constant factor every turn of the spiral, and each shape touches its neighbours in the spiral ordering. For example, start with a 1-by-Φ rectangle, where Φ is the golden ratio. Add an adjacent Φ-by-Φ square and get another golden rectangle. Add an adjacent -by- square and get a larger golden rectangle, and so on.
Now, in order to separate more than 1/3 of the shapes, the separator must separate O shapes from two different vertices. But to do this, the separator must intersect O shapes.

Separators that are hyperplanes

Proof

Define W as the most western vertical line with at least N/4 rectangles entirely to its west. There are two cases:
The number of intersected shapes, guaranteed by the above theorem, is O. This upper bound is asymptotically tight even when the shapes are squares, as illustrated in the figure to the right. This is in sharp contrast to the upper bound of O intersected shapes, which is guaranteed when the separator is a closed shape.
Moreover, when the shapes are arbitrary rectangles, there are cases in which no line that separates more than a single rectangle can cross less than N/4 rectangles, as illustrated in the figure to the right.

Generalizations

The above theorem can be generalized from disjoint rectangles to k-thick rectangles. Additionally, by induction on d, it is possible to generalize the above theorem to d dimensions and get the following theorem:
For the special case when k = N − 1, the following theorem holds:
The objects need not be boxes, and the separators need not be axis-parallel:

Algorithmic versions

It is possible to find the hyperplanes guaranteed by the above theorems in O steps. Also, if the 2d lists of the lower and upper endpoints of the intervals defining the boxes's ith coordinates are pre-sorted, then the best such hyperplane may be found in O steps.

Separators that are width-bounded strips between parallel hyperplanes

Proof sketch

Define the centerpoint of Q as a point o such that every line through it has at most 2n/3 points of Q in each side of it. The existence of a centerpoint can be proved using Helly's theorem.
For a given point p and constant a>0, define Pr as the probability that a random line through o lies at a distance of less than a from p. The idea is to bound this probability and thus bound the expected number of points at a distance less than a from a random line through o. Then, by the pigeonhole principle, at least one line through o is the desired separator.

Applications

Bounded-width separators can be used for approximately solving the protein folding problem. It can also be used for an exact sub-exponential algorithm to find a maximum independent set, as well as several related covering problems, in geometric graphs.

Geometric separators and planar graph separators

The planar separator theorem may be proven by using the circle packing theorem to represent a planar graph as the contact graph of a system of disks in the plane, and then by finding a circle that forms a geometric separator for those disks.