Biography:David Shmoys

From HandWiki
Short description: American mathematician
David Shmoys
Shmoys david.jpg
David Shmoys
Born1959 (age 64–65)
Alma materPrinceton,
University of California, Berkeley
AwardsFrederick W. Lanchester Prize (2013)
Daniel H. Wagner Prize (2018)
Khachiyan Prize (2022)
Scientific career
FieldsComputer Science, Computational complexity theory
InstitutionsCornell
ThesisApproximation Algorithms for Problems in Sequencing, Scheduling, and Communication Network Design (1984)
Doctoral advisorEugene Lawler
Doctoral studentsClifford Stein
Websitepeople.orie.cornell.edu/shmoys/

David Bernard Shmoys (born 1959) is a Professor in the School of Operations Research and Information Engineering and the Department of Computer Science at Cornell University. He obtained his Ph.D. from the University of California, Berkeley in 1984. His major focus has been in the design and analysis of algorithms for discrete optimization problems.

In particular, his work has highlighted the role of linear programming in the design of approximation algorithms for NP-hard problems. He is known for his pioneering research on providing first constant factor performance guarantee for several scheduling and clustering problems including the k-center and k-median problems and the generalized assignment problem. Polynomial-time approximation schemes that he developed for scheduling problems have found applications in many subsequent works. His current research includes stochastic optimization for data-driven models in a broad cross-section of areas, including COVID epidemiological modeling, congressional districting, transportation, and IoT network design. Shmoys is married to Éva Tardos, who is the Jacob Gould Schurman Professor of Computer Science at Cornell University.

Key contributions

Two of his key contributions are

  1. Constant factor approximation algorithm for the Generalized Assignment Problem and Unrelated Parallel Machine Scheduling.
  2. Constant factor approximation algorithm for k-Medians and Facility location problem.

These contributions are described briefly below:

Generalized Assignment Problem & Unrelated Parallel Machine Scheduling

The paper[1] is a joint work by David Shmoys and Eva Tardos.

The generalized assignment problem can be viewed as the following problem of scheduling unrelated parallel machine with costs. Each of [math]\displaystyle{ n }[/math] independent jobs (denoted [math]\displaystyle{ J }[/math]) have to be processed by exactly one of [math]\displaystyle{ m }[/math] unrelated parallel machines (denoted [math]\displaystyle{ M }[/math]). Unrelated implies same job might take different amount of processing time on different machines. Job [math]\displaystyle{ j }[/math] takes [math]\displaystyle{ p_{i,j} }[/math] time units when processed by machine [math]\displaystyle{ i }[/math] and incurs a cost [math]\displaystyle{ c_{i,j} , i=1,2,..,m; j=1,2,..,n; n \geq m }[/math]. Given [math]\displaystyle{ C }[/math] and [math]\displaystyle{ T_i , i=1,2,..,m }[/math], we wish to decide if there exists a schedule with total cost at most [math]\displaystyle{ C }[/math] such that for each machine [math]\displaystyle{ i }[/math] its load, the total processing time required for the jobs assigned to it is at most [math]\displaystyle{ T_i , i=1,2,..,m }[/math]. By scaling the processing times, we can assume, without loss of generality, that the machine load bounds satisfy [math]\displaystyle{ T_1=T_2=..=T_m=T }[/math]. ``In other words, generalized assignment problem is to find a schedule of minimum cost subject to the constraint that the makespan, that the maximum machine load is at most [math]\displaystyle{ T }[/math] ".

The work of Shmoys with Lenstra and Tardos cited here[2] gives a 2 approximation algorithm for the unit cost case. The algorithm is based on a clever design of linear program using parametric pruning and then rounding an extreme point solution of the linear program deterministically. Algorithm for the generalized assignment problem is based on a similar LP through parametric pruning and then using a new rounding technique on a carefully designed bipartite graph. We now state the LP formulation and briefly describe the rounding technique.

We guess the optimum value of makespan [math]\displaystyle{ T }[/math] and write the following LP. This technique is known as parametric pruning.

[math]\displaystyle{ LP(T)::\sum_{i=1}^{m} \sum_{j=1}^n c_{ij} x_{ij} \le C }[/math];

[math]\displaystyle{ \sum_{i=1}^m x_{ij} = 1 \qquad j=1, \ldots, n }[/math];
[math]\displaystyle{ \sum_{i=1}^m p_{ij}x_{ij} \leq T \qquad i=1, \ldots, m }[/math];
[math]\displaystyle{ x_{ij} \geq 0 \qquad i=1, \ldots, m, \quad j=1, \ldots, n }[/math];
[math]\displaystyle{ x_{ij}=0 \qquad \text{if} \qquad p_{ij} \geq T, \qquad i=1, \ldots, m, \quad j=1, \ldots, n }[/math];

The obtained LP solution is then rounded to an integral solution as follows. A weighted bipartite graph [math]\displaystyle{ G=(W \cup V, E) }[/math] is constructed. One side of the bipartite graph contains the job nodes, [math]\displaystyle{ W =\{w_j | j \in J\} }[/math], and the other side contains several copies of each machine node, [math]\displaystyle{ V=\{v_{i,s} | i=1,2,..,m; s=1,2,..,k_i \} }[/math], where [math]\displaystyle{ k_i=\lceil \sum_{j} x_{ij} \rceil }[/math]. To construct the edges to machine nodes corresponding to say machine [math]\displaystyle{ i }[/math], first jobs are arranged in decreasing order of processing time [math]\displaystyle{ p_{ij} }[/math]. For simplicity, suppose, [math]\displaystyle{ p_{i1} \geq p_{i2} \geq \ldots \geq p_{in} }[/math]. Now find the minimum index [math]\displaystyle{ j_1 }[/math], such that [math]\displaystyle{ \sum_{j=1}^{j_1} x_{ij} \geq 1 }[/math]. Include in [math]\displaystyle{ E }[/math] all the edges [math]\displaystyle{ (w_j,v_{i1}, j=1,2,..,j_1-1) }[/math] with nonzero [math]\displaystyle{ x_{ij} }[/math] and set their weights to [math]\displaystyle{ x'_{v_{i1}j}= x_{ij} }[/math]. Create the edge [math]\displaystyle{ (w_{j_1}, v_{i1}) }[/math] and set its weight to [math]\displaystyle{ x'_{v_{i1}j_1}=1-\sum_{i=1}^{j_1-1} x'_{v_{i1}j} }[/math]. This ensures that the total weight of the edges incident on the vertex [math]\displaystyle{ v_{i1} }[/math] is at most 1. If [math]\displaystyle{ x'_{v_{i1}j_1} \lt x_{ij_1} }[/math], then create an edge [math]\displaystyle{ (w_{j_1}, v_{i2}) }[/math] with weight [math]\displaystyle{ x'_{v_{i2}j_1}=x_{ij}-x'_{v_{i1}j_1} }[/math]. Continue with assigning edges to [math]\displaystyle{ v_{i2} }[/math] in a similar way.

In the bipartite graph thus created, each job node in [math]\displaystyle{ W }[/math] has a total edge weight of 1 incident on it, and each machine node in [math]\displaystyle{ V }[/math] has edges with total weight at most 1 incident on it. Thus the vector [math]\displaystyle{ x' }[/math] is an instance of a fractional matching on [math]\displaystyle{ G }[/math] and thus it can be rounded to obtain an integral matching of same cost.

Now considering the ordering of processing times of the jobs on the machines nodes during construction of [math]\displaystyle{ G }[/math] and using an easy charging argument, the following theorem can be proved:

Theorem: If [math]\displaystyle{ LP(T) }[/math] has a feasible solution then a schedule can be constructed with makespan [math]\displaystyle{ T + max_{i,j} p_{i,j} }[/math] and cost [math]\displaystyle{ C }[/math].

Since [math]\displaystyle{ max_{i,j} p_{i,j} \leq T }[/math], a 2 approximation is obtained.

K-medians and Facility Location Problem

The paper[3] is a joint work by Moses Charikar, Sudipto Guha, Éva Tardos and David Shmoys. They obtain a [math]\displaystyle{ 6 \frac{2}{3} }[/math] approximation to the metric k medians problem. This was the first paper to break the previously best known [math]\displaystyle{ O(\log{k}\ \log{\log{k}}) }[/math] approximation.

Shmoys has also worked extensively on the facility location problem. His recent results include obtaining a [math]\displaystyle{ 3 }[/math] approximation algorithm for the capacitated facility location problem. The joint work with Fabian Chudak,[4] has resulted in improving the previous known [math]\displaystyle{ 5.69 }[/math] approximation for the same problem. Their algorithm is based on a variant of randomized rounding called the randomized rounding with a backup, since a backup solution is incorporated to correct for the fact that the ordinary randomized rounding rarely generates a feasible solution to the associated set covering problem.

For the incapacitated version of the facility location problem, again in a joint work with Chudak[5] he obtained a [math]\displaystyle{ (1+2/e) \approx 1.736 }[/math]-approximation algorithm which was a significant improvement on the previously known approximation guarantees. The improved algorithm works by rounding an optimal fractional solution of a linear programming relaxation and using the properties of the optimal solutions of the linear program and a generalization of a decomposition technique.

Awards & honors

David Shmoys is an ACM Fellow, a SIAM Fellow, and a Fellow of the Institute for Operations Research and the Management Sciences (INFORMS) (2013). He has received the Sonny Yau Excellence in Teaching Award three times from Cornell's College of Engineering, and has been awarded a NSF Presidential Young Investigator Award, the Frederick W. Lanchester Prize (2013), the Daniel H. Wagner Prize for Excellence in the Practice of Advanced Analytics and Operations Research (2018), and the Khachiyan Prize of the INFORMS Optimization Society (2022) which is awarded annually for life-time achievements in the area of optimization.

References

  1. Shmoys, D. B.; Tardos, É. (1993). "An approximation algorithm for the generalized assignment problem". Mathematical Programming 62 (1–3): 461–474. doi:10.1007/BF01585178. 
  2. Lenstra, J. K.; Shmoys, D. B.; Tardos, É. (1990). "Approximation algorithms for scheduling unrelated parallel machines". Mathematical Programming 46 (1–3): 259–271. doi:10.1007/BF01585745. https://ir.cwi.nl/pub/18055. 
  3. Charikar, M.; Guha, S.; Tardos, É.; Shmoys, D. B. (2002). "A Constant-Factor Approximation Algorithm for the k-Median Problem". Journal of Computer and System Sciences 65: 129–149. doi:10.1006/jcss.2002.1882. 
  4. Chudak, F. N. A.; Williamson, D. P. (2004). "Improved approximation algorithms for capacitated facility location problems". Mathematical Programming 102 (2): 207. doi:10.1007/s10107-004-0524-9. 
  5. Chudak, F. N. A.; Shmoys, D. B. (2003). "Improved Approximation Algorithms for the Uncapacitated Facility Location Problem". SIAM Journal on Computing 33: 1–25. doi:10.1137/S0097539703405754. 

External links