Where should you place a business if one of your customers keeps moving?

Imagine you are the owner of a hot dog stand and, after many stressful years in the streets of New York City, you are moving the business to the countryside.

Credit: Luvzdollz's Flickr
Credit: Luvzdollz’s Flickr

Of course, you want all the potential users to have your stand as close as possible. After thinking on it for a while, you take the bizarre decision of hiring a mathematician. He immediately detects that you are facing a facility location problem, where you want to minimize the maximum distance between your stand and the users.

You are lucky, my friend! He says. It turns out that this is a well-known problem, first posed by Sylvester 1 in 1857. The solution is not difficult: Your stand should be placed at the center of the smallest circle enclosing the users, known as the smallest enclosing circle.

Credit: Wikimedia commons
Credit: Wikimedia commons

You are still a bit concerned about the difficulty of finding that place, but the mathematician calms you down. Megiddo found an optimal algorithm 2 in 1983, which for n users takes \Theta (n) linear time. This means that even your cell phone could compute the solution for a quite large number of users.

You are curious and ask about the algorithm, but the mathematician tells you that the one by Welzl 3 is simpler to describe. On the other hand, this algorithm is randomized instead of deterministic. But its expected time complexity is also O(n).

The mathematician has certainly deserved the payment. Being a reasonably good option for all the users in the area, your incomes keep regular for many years. But, suddenly, one day your best customer decides to buy a motorhome.

Credit: Allen's Flickr
Credit: Allen’s Flickr

He is not planning to leave the area, just to travel back and forth between his current house near the mountains and a nice spot next to river, sleeping on the way and moving along the straight road which connects them.

So you may no longer be a reasonable choice for your best customer! Of course, this is a serious problem for your business. Having a mobile stand, you could also move following him… but you are not willing to lose any of the other customers. What should you do? Overwhelmed, you decide to call the mathematician again.

You are really lucky, you know? He says this time. Your problem has just been solved by Banik et al.4. They consider a set S of n static points (your other customers) in addition to a single point which moves along a straight line (your best customer).

Their work describes the path you should follow, in order to be at the best location possible for the whole set customers. More technically, the authors provide a complete characterization of the locus of the center of the smallest enclosing circle for the whole set of n+1 points.

They first choose a coordinate system such that the straight trajectory of the mobile point coincides with the, horizontal, x-axis. Then, they define the center function \psi :\mathbb{R}\to\mathbb{R^2} which sends each position p=(p,0) of the mobile point to your best location, i.e., to the center of the smallest circle enclosing S\cup\{p\}.

The authors show that this center function is continuous and piecewise differentiable. Actually, each of those differentiable pieces lies either on the boundary of the farthest-point Voronoi diagram of the set S of static points, or on a horizontal line (parallel to the trajectory of the mobile point).

Credit: David Orden
Credit: David Orden

In addition, they prove that the number of pieces of the center function is linear in the number n of static points. In other words, this center function is not too intricate, having a combinatorial complexity of O(n).

This property allows them to give a simple linear algorithm for computing the center function, given the farthest-point Voronoi diagram of the set S of static points (which can be computed in O(n\log n) time 5). In order to do so, they use the line sweep technique. The event points are those where the center function changes from one segment to another.

All right, but what if my best customer decides to follow a non-straight road? You ask, just to show mathematician that you are following the flow of ideas.

That is a good question! He answers. The authors remark that the above results can be generalized to the case where the mobile point travels along a concatenation of m straight segments. Then, the combinatorial complexity of the center function changes to O(mn), and this is also the complexity of its computation (again given the farthest-point Voronoi diagram of the static points).

Before you can ask what happens if a second customer decides to become mobile as well, the mathematician runs away heading to his office. He maybe trying to solve that case right now.

References

  1. J. J. Sylvester. A question in the geometry of situation. Quarterly Journal of Mathematics, 1:79, 1857.
  2. N. Megiddo. Linear-time algorithms for linear programming in \mathbb{R}^3 and related problems. SIAM Journal on Computing, Vol. 4, 759–776, 1983. http://dx.doi.org/10.1109/SFCS.1982.24
  3. E. Welzl. Smallest enclosing disks (balls and ellipsoids). In H. Maurer (Ed.), New Results and New Trends in Computer Science, LNCS 555, 359–370, 1991. http://dx.doi.org/10.1007/BFb0038202
  4. Banik A., Bhattacharya B.B. & Das S. (2014). Minimum enclosing circle of a set of fixed points and a mobile point, Computational Geometry, DOI: 10.1016/j.comgeo.2014.04.006
  5. M. de Berg, M. Van Kreveld, M. Overmarse, and O. Schwarzkopf. Computational Geometry: Algorithms and Applications, Springer-Verlag, 1997. http://www.cs.uu.nl/geobook/

Written by

Leave a Reply

Your email address will not be published.Required fields are marked *