Smallest-circle problem
1. Problem
The minimum covering circle problem is a mathematical problem of computing a smallest enclosing circle of a set S of given N points in Rn, which was initially proposed by Sylvester in 1987. This problem is also called minimum covering circle problem. In two dimensional space, the problem is a well known single facility location problem which locates a new facility to provide service to a number of customers or facilities. We can formulate the minimum covering circle problem as the minimax programming problem:
The problem can be reduced to the following minimization problem:
with subject to
where can be seen as the radius of the smallest covering circle, or equivalently
with subject to
2. Algorithms
From here on we will consider the minimum covering circle problem in two dimensional Euclidean space. Most of the geometric approaches for the problem look for points that lie on the boundary of the minimum circle and are based on the following simple facts:
- The minimum covering circle is unique. - The minimum covering circle can be determined by at most three points in S which lie on the boundary of the circle. If it is determined by only two points, then the line segment joining those two points must be a diameter of the minimum circle. If it is determined by three points, then the triangle consists of those three points is not obtuse.
We note that, according to the above facts, the problem can be solved in by enumerating all the triples of the points in S under a model in which square roots are calculated in constant time.
Algorithm 1
References
External links
- Bernd Gärtner's smallest enclosing ball code
- Miniball open source project for smallest enclosing balls