Chapter 1. Formulations (BW)
Integer Optimization Problem (IP) min (max) 𝑐 ′ 𝑥 Mixed Integer Optimization Problem (or (Linear) Mixed Integer Program, MIP) min (max) 𝑐 ′ 𝑥+ 𝑑 ′ 𝑦 𝐴𝑥+𝐵𝑦=𝑏 (or 𝐴𝑥+𝐵𝑦≤𝑏) 𝑥∈ 𝑍 + 𝑛 , 𝑦∈ 𝑅 + 𝑘 , where 𝐴∈ 𝑍 𝑚×𝑛 , 𝐵∈ 𝑍 𝑚×𝑘 , 𝑏∈ 𝑍 𝑚 , 𝑐∈ 𝑍 𝑛 , 𝑑∈ 𝑍 𝑘 Integer Optimization Problem (IP) min (max) 𝑐 ′ 𝑥 𝐴𝑥=𝑏 𝑥∈ 𝑍 + 𝑛 Binary (or zero-one) Integer Optimization Problem (BIP) 𝑥∈ 0, 1 𝑛 ( or 𝑥∈ 𝐵 𝑛 ) Integer Programming 2018
Combinatorial Optimization Problem Given a finite set 𝑁= 1,…,𝑛 , weights 𝑐 𝑗 for each 𝑗∈𝑁, and a set 𝐹 of feasible subsets of 𝑁. Want to find a minimum (or maximum) weight feasible subset in 𝐹. (COP) min 𝑆⊆𝑁 𝑗∈𝑆 𝑐 𝑗 :𝑆∈𝐹 Almost all COPs can be formulated as IP or BIP Knapsack problem, Traveling Salesman Problem, Min/Max cut of graph, Stable set, Steiner Tree, … Integer Programming 2018
Applications Numerous applications Transportation (train scheduling) Airline crew scheduling, plane scheduling Production planning, distribution, SCM, logistics Energy, Eletricity generation planning Telecommunicaton network design, operation Buses for the handicapped Ground holding of aircraft Cutting problems …. Too many to list. Provides very strong modeling capabilities (much better than LP alone), but usually difficult to solve (The solution set is not convex) Paradigm change: linear nonlinear convex non-convex Recent advances in theory and software makes IP a practical option. Integer Programming 2018
1.1 Modeling Techniques Steps Define necessary variables Define (construct) constraints so that feasible points correspond to the feasible solutions of the problem Define objective function May exist many correct, but different formulations. Needs creativity. Which formulation is better? Frequently, use incidence vectors to denote sets 𝑆⊆𝑁={1,…,𝑛}, incidence vector of 𝑆 is 𝑛−dimensional vector 𝑥𝑆 such that 𝑥 𝑗 𝑆 =1 if 𝑗∈𝑆 and 𝑥 𝑗 𝑆 =0 otherwise. Integer Programming 2018
Binary choice The 0-1 knapsack problem 𝑛 items 𝑎 𝑗 >0 is the weight of item 𝑗, and 𝑐 𝑗 >0 is its value Bound 𝑏 on the weight that can be carried in a knapsack (usually assume 𝑎 𝑗 , 𝑐 𝑗 ,𝑏 are integers) Select items to be put in the knapsack so that the total value is maximum. 𝑥 𝑗 =1 if item 𝑗 is selected, and 𝑥 𝑗 =0 otherwise The capacity bound cannot be exceeded: 𝑗=1 𝑛 𝑎 𝑗 𝑥 𝑗 ≤𝑏 Variables are 0-1: 𝑥 𝑗 ∈ 0, 1 for 𝑗=1,…,𝑛 Total value is maximized: max 𝑗=1 𝑛 𝑐 𝑗 𝑥 𝑗 Integer Programming 2018
May be the most widely studied basic model of combinatiorial optimization problems. Frequently, knapsack constraint appears as a substructure (constraint) of a larger model. Variations Integer knapsack problem Precedence constrained knapsack problem Partial orders on projects project 𝑖 must be done to perform project 𝑗 ( 𝑖→𝑗 ) ( can be represented as directed graph, use 𝑥 𝑖 ≥ 𝑥 𝑗 in constraints (𝑥: binary), forcing constraint) ex) repair kit selection, selecting tools for FMS tool magazine, open pit mining, … Quadratic knapsack problem: Objective is quadratic function Integer Programming 2018
Boolean Quadratic Function max 𝑓 𝑥 = 𝑖=1 𝑛 𝑑 𝑖 𝑥 𝑖 + 𝑖,𝑗,𝑖≠𝑗 𝑐 𝑖𝑗 𝑥 𝑖 𝑥 𝑗 , 𝑥 𝑖 ∈ 0,1 for all 𝑖. ( use additional variables 𝑦 𝑖𝑗 , such that 𝑦 𝑖𝑗 = 𝑥 𝑖 𝑥 𝑗 for binary 𝑥. Extended formulation.) max 𝑖=1 𝑛 𝑑 𝑖 𝑥 𝑖 + 𝑖,𝑗,𝑖≠𝑗 𝑐 𝑖𝑗 𝑦 𝑖𝑗 𝑥 𝑖 + 𝑥 𝑗 − 𝑦 𝑖𝑗 ≤1 − 𝑥 𝑖 + 𝑦 𝑖𝑗 ≤0 − 𝑥 𝑗 + 𝑦 𝑖𝑗 ≤0 for all 𝑖, 𝑗, 𝑖≠𝑗 𝑥 𝑖 , 𝑦 𝑖𝑗 ∈ 0, 1 for all 𝑖, 𝑗 constraints ensure that 𝑥 𝑖 = 𝑥 𝑗 =1 ⟺ 𝑦 𝑖𝑗 =1 The technique can be used in reformulation and linearization method for IP. Integer Programming 2018
Ex: quadratic knapsack problem, max cut of a graph Def: Given a graph 𝐺=(𝑉, 𝐸), and subset 𝑆⊆𝑉 of vertices, the set of edges with exactly one endpoint in 𝑆 is called a cut (relative to 𝑆). Given 𝐺=(𝑉, 𝐸), and edge weights 𝑐 𝑖𝑗 , 𝑒=(𝑖,𝑗)∈𝐸, find a maximum weight cut of 𝐺. max (𝑖,𝑗)∈𝐸 𝑐 𝑖𝑗 𝑥 𝑖 1− 𝑥 𝑗 + 1− 𝑥 𝑖 𝑥 𝑗 𝑥 𝑖 ∈ 0,1 for all 𝑖 (may add constraint 𝑥 1 =1 ) (𝑠𝑡−cut also can be formulated, set 𝑥 𝑠 =1, 𝑥 𝑡 =0) Note: max cut problem is difficult to solve (NP-hard), but min cut problem is easy (max-flow min-cut theorem). Integer Programming 2018
Forcing constraints Decision A (𝑥=1) can be made only if decision B (𝑦=1) also has been made. 𝑥≤𝑦 Uncapacitated Facility Location (UFL) Given potential depots 𝑁= 1,…,𝑛 , and a set 𝑀= 1,…,𝑚 of clients. Fixed cost 𝑐 𝑗 to open depot 𝑗, and transportation cost 𝑑 𝑖𝑗 if all of client 𝑖 ′ 𝑠 order is delivered from depot 𝑗. Determine which depots to open, and which depot serves each client so as to minimize the total cost. Define 𝑦 𝑗 =1 if depot 𝑗 is open, and 𝑦 𝑗 =0 otherwise 𝑥 𝑖𝑗 is fraction of the demand of client 𝑖 satisfied from depot 𝑗. Satisfaction of demand of client 𝑖 : 𝑗=1 𝑛 𝑥 𝑖𝑗 =1 for 𝑖=1,…,𝑚. Integer Programming 2018
if depot 𝑗 not opened, then 𝑥 𝑖𝑗 =0. ⟹ 𝑥 𝑖𝑗 ≤ 𝑦 𝑗 for 𝑖∈𝑀, 𝑦 𝑗 ∈ 0, 1 min 𝑗=1 𝑛 𝑐 𝑗 𝑦 𝑗 + 𝑖=1 𝑚 𝑗=1 𝑛 𝑑 𝑖𝑗 𝑥 𝑖𝑗 s.t. 𝑗=1 𝑛 𝑥 𝑖𝑗 =1 for 𝑖∈𝑀 𝑥 𝑖𝑗 ≤ 𝑦 𝑗 for 𝑖∈𝑀, 𝑗∈𝑁 0≤ 𝑥 𝑖𝑗 ≤1 for 𝑖∈𝑀, 𝑗∈𝑁, 𝑦 𝑗 ∈ 0, 1 for 𝑗∈𝑁 Note that there exists an optimal solution with 𝑥 𝑖𝑗 =0 or 1. Capacitated version? Integer Programming 2018
Relation between variables 𝑗=1 𝑛 𝑥 𝑖𝑗 ≤ = 1, 𝑥∈ 𝐵 𝑛 : Generalized upper bound (GUB) constraint Integer Programming 2018
Disjunctive constraints Assume 𝑥≥0 𝑎 ′ 𝑥≥𝑏, 𝑐 ′ 𝑥≥𝑑, 𝑎, 𝑐≥0 at least one of the two constraints needs to be satisfied 𝑎 ′ 𝑥≥𝑦𝑏, 𝑐 ′ 𝑥≥ 1−𝑦 𝑑, 𝑦∈ 0, 1 General form: 𝑎 𝑖 ′ 𝑥≥ 𝑏 𝑖 , 𝑖=1,…,𝑚 ( 𝑎 𝑖 ≥0 for all 𝑖) (at least 𝑘 out of 𝑚 constraints needs to be satisfied) 𝑖=1 𝑚 𝑦 𝑖 ≥𝑘, 𝑎 𝑖 ′ 𝑥≥ 𝑏 𝑖 𝑦 𝑖 , 𝑦 𝑖 ∈ 0, 1 , 𝑖=1,…,𝑚. Ex) machine scheduling: two jobs must be processed on the same machine and cannot be processed simultaneously. 𝑝 𝑖 : processing time of job 𝑖, 𝑡 𝑖 : start time of job 𝑖, either 𝑡 2 ≥ 𝑡 1 + 𝑝 1 or 𝑡 1 ≥ 𝑡 2 + 𝑝 2 should hold. (need a different formulation from above, using big 𝑀) Integer Programming 2018
Machine scheduling formulation: 𝑡 2 − 𝑡 1 ≥ 𝑝 1 −𝑀𝑦 𝑡 1 − 𝑡 2 ≥ 𝑝 2 −𝑀(1−𝑦) 𝑦∈ 0, 1 Note that the feasible solution set is not convex. Use of big M is not desirable for branch-and-bound algorithm. We will consider a different style formulation using different variables later. Integer Programming 2018
Union of k polytopes in 𝑅 𝑛 (see CCZ p. 70~71, also NW p. 12~13, and p Union of k polytopes in 𝑅 𝑛 (see CCZ p.70~71, also NW p.12~13, and p.17 for more remarks) Given bounded sets of the form (polytope: bounded polyhedron) 𝐴 𝑖 𝑦≤ 𝑏 𝑖 0≤𝑦≤ 𝑢 𝑖 , (1) for 𝑖=1,…,𝑘 Want to model a point in union of these k polytopes The vector 𝑦∈ 𝑅 𝑛 belongs to the union of the k polytopes in (1) if and only if 𝑖=1 𝑘 𝑦 𝑖 =𝑦 𝐴 𝑖 𝑦 𝑖 ≤ 𝑏 𝑖 𝑥 𝑖 𝑖=1,…,𝑘 (2) 0≤ 𝑦 𝑖 ≤ 𝑢 𝑖 𝑥 𝑖 𝑖=1,…,𝑘 𝑖=1 𝑘 𝑥 𝑖 =1 𝑥∈ {0,1} 𝑘 . Integer Programming 2018
Def: convex hull of a set 𝑆⊆ 𝑅 𝑛 : set of all convex combinations of points in 𝑆 Picture: conv( 𝑃 1 ∪ 𝑃 2 ) 𝑃 2 𝑃 1 Integer Programming 2018
Proposition: The convex hull of solutions to (2) is 𝑖=1 𝑘 𝑦 𝑖 =𝑦 𝐴 𝑖 𝑦 𝑖 ≤ 𝑏 𝑖 𝑥 𝑖 𝑖=1,…,𝑘 0≤ 𝑦 𝑖 ≤ 𝑢 𝑖 𝑥 𝑖 𝑖=1,…,𝑘 𝑖=1 𝑘 𝑥 𝑖 =1 𝑥∈ [0,1] 𝑘 . (linear relaxation) Pf) Let 𝑃⊂ 𝑅 𝑛 × 𝑅 𝑘𝑛 × 𝑅 𝑘 be the polytope given in the statement. We show that any point 𝑧 ≡( 𝑦 , 𝑦 1 ,…, 𝑦 𝑘 , 𝑥 1 ,…, 𝑥 𝑘 ) in 𝑃 is a convex combination of solutions to (2). For 𝑡 such that 𝑥 𝑡 ≠0, define the point 𝑧 𝑡 = 𝑦 𝑡 , 𝑦 1 𝑡 ,…, 𝑦 𝑘 𝑡 , 𝑥 1 𝑡 ,…, 𝑥 𝑘 𝑡 where 𝑦 𝑡 ≡ 𝑦 𝑡 𝑥 𝑡 , 𝑦 𝑖 𝑡 ≡ 𝑦 𝑡 𝑥 𝑡 , for 𝑖=𝑡 0, otherwise 𝑥 𝑖 𝑡 ≡ 1 for 𝑖=𝑡 0 otherwise The 𝑧 𝑡 s are solutions of (2). We claim that 𝑧 is a convex combination of 𝑧 𝑡 s with weights 𝑥 𝑡 s. Observe first 𝑦 = 𝑦 𝑖 = 𝑡: 𝑥 𝑡 ≠0 𝑦 𝑡 = 𝑡: 𝑥 𝑡 ≠0 𝑥 𝑡 𝑦 𝑡 . Second, note that when 𝑥 𝑖 ≠0 we have 𝑦 𝑖 = 𝑡: 𝑥 𝑡 ≠0 𝑥 𝑡 𝑦 𝑖 𝑡 . This equality also holds when 𝑥 𝑖 =0 because then 𝑦 𝑖 =0 and 𝑦 𝑖 𝑡 =0 for all 𝑡 such that 𝑥 𝑡 ≠0. Finally 𝑥 𝑖 = 𝑡: 𝑥 𝑡 ≠0 𝑥 𝑡 𝑥 𝑖 𝑡 for 𝑖=1,…,𝑘. Integer Programming 2018
Importance: 0-1 integer program max{ 𝑐 ′ 𝑥:𝐴𝑥≤𝑏, 0≤𝑥≤1, 𝑥 integer} LP relaxation may produce a fractional optimal solution. Assume 𝑥 𝑗 is fractional. Let 𝑃={𝑥∈ 𝑅 𝑛 :𝐴𝑥≤𝑏,0≤𝑥≤1}, 𝑃 1 ={𝑥∈𝑃: 𝑥 𝑗 ≤0}, 𝑃 2 ={𝑥∈𝑃: 𝑥 𝑗 ≥1}. Then feasible solutions of IP are in 𝑃 1 ∪ 𝑃 2 . 1 Convex hull of 𝑃 1 ∪ 𝑃 2 𝑃 2 𝑃 1 𝑥 𝑗 1 Integer Programming 2018
If we have valid inequalities describing conv( 𝑃 1 ∪ 𝑃 2 ), solving LP relaxation over conv( 𝑃 1 ∪ 𝑃 2 ) will give an optimal solution with 𝑥 𝑗 having 0 or 1. (cutting plane method, separation problem) The idea can be generalized to unbounded polyhedron (later). Note that 𝑃 1 and/or 𝑃 2 may be empty. Integer Programming 2018
Restricted range of values Want to restrict a variable 𝑥 to take values in a set 𝑎 1 ,…, 𝑎 𝑚 . 𝑥= 𝑗=1 𝑚 𝑎 𝑗 𝑦 𝑗 , 𝑗=1 𝑚 𝑦 𝑗 =1 , 𝑦 𝑗 ∈ 0, 1 for all 𝑗 Integer Programming 2018
Arbitrary piecewise linear cost functions Piecewise linear, not necessarily convex, cost function (separable piecewise linear convex cost function can be modeled as LP (min problem, but non-convex (or non-concave) function cannot be modeled as LP) 𝑓(𝑥) 𝑥= 𝑖=1 𝑘 𝜆 𝑖 𝑎 𝑖 , 𝑓 𝑥 = 𝑖=1 𝑘 𝜆 𝑖 𝑓 𝑎 𝑖 , 𝑖=1 𝑘 𝜆 𝑖 =1 , 𝜆 1 ,…, 𝜆 𝑘 ≥0 𝑥 𝑎1 𝑎2 𝑎3 𝑎4 𝑦1 𝑦2 𝑦3 1 2 3 4 Integer Programming 2018
Formulation: min 𝑖=1 𝑘 𝜆 𝑖 𝑓 𝑎 𝑖 s. t. 𝜆 1 ≤ 𝑦 1 , 𝜆 𝑘 ≤ 𝑦 𝑘−1 𝜆 𝑖 ≤ 𝑦 𝑖−1 + 𝑦 𝑖 , 𝑖=2,…,𝑘−1, 𝑖=1 𝑘 𝜆 𝑖 =1, 𝑖=1 𝑘−1 𝑦 𝑖 =1 𝜆 𝑖 ≥0, for all 𝑖, 𝑦 𝑖 ∈ 0, 1 , for all 𝑖 Integer Programming 2018
Alternative formulation 𝐿 𝑗 𝑤 𝑗 ≤ 𝑥 𝑗 ≤ 𝐿 𝑗 𝑤 𝑗−1 , 𝑗=1,2,…,𝑘 𝑤 0 =1 𝑤 𝑗 ∈ 0, 1 , 𝑗=1,2,…,𝑘 𝑥 𝑗 ≥0, 𝑗=1,2,…,𝑘 𝑓(𝑥) slope 𝑐 3 𝑓=𝐾+𝑐1𝑥1+𝑐2𝑥2+…+𝑐𝑘𝑥𝑘 (may replace 𝑥 with 𝑥 1 +…+ 𝑥 𝑘 , in the constraints.) 𝑐 2 𝑐 1 Note that constraints imply 𝑤 𝑗 ≤ 𝑤 𝑗−1 𝐾 𝑥 𝑤0 𝑤1 𝑤2 𝑤3 𝐿1 𝐿2 𝐿3 Integer Programming 2018
Set covering, set packing, set partitioning 𝑀={1, … , 𝑚}, 𝑁={1, … , 𝑛} 𝑀 1 , 𝑀 2 ,…, 𝑀 𝑛 are collection of subsets of 𝑀. cost 𝑐 𝑗 for each subset 𝑀 𝑗 𝐹⊆𝑁 is a cover of 𝑀 if 𝑗∈𝐹 𝑀 𝑗 =𝑀 𝐹 is a packing of 𝑀 if 𝑀 𝑗 ⋂ 𝑀 𝑘 =∅ for all 𝑗,𝑘∈𝐹, 𝑗≠𝑘 𝐹 is a partition of 𝑀 if it is both a cover and a packing of 𝑀. weight of a subset 𝐹 of 𝑁 is defined as 𝑗∈𝐹 𝑐 𝑗 Let 𝐴:𝑚×𝑛 with 𝑎 𝑖𝑗 =1, if 𝑖∈ 𝑀 𝑗 , =0, otherwise 𝐴𝑥≥𝑒, 𝐴𝑥≤𝑒, 𝐴𝑥=𝑒, 𝑥∈ 𝐵 𝑛 ( 𝑒 : unit vector) Note that 𝐴𝑥= 𝑗=1 𝑛 𝐴 𝑗 𝑥 𝑗 , where 𝐴 𝑗 is 𝑗−𝑡ℎ column of 𝐴. Integer Programming 2018
Sequencing problem with setup times One machine, 𝑚 operations operation 𝑗 requires unique tool 𝑗 capacity of tool magazine is 𝐵<𝑚 loading or unloading tool 𝑗 into the magazine requires 𝑠 𝑗 units of setup time 𝑛 jobs need to be performed by the machine and each job 𝑖 requires multiple operations 𝐽 𝑖 , 𝐽 𝑖 ≤𝐵 (setup time required prior to each job is sequence dependent) Determine the optimal job sequence that minimizes total setup time. Assume the magazine is empty initially. Integer Programming 2018
𝑥 𝑖𝑟 =1, if job 𝑖 is the 𝑟−th job processed =0, otherwise Let 𝑥 𝑖𝑟 =1, if job 𝑖 is the 𝑟−th job processed =0, otherwise 𝑦 𝑗𝑟 =1, if tool 𝑗 is on the magazine while the 𝑟−th job is processed 𝑦 𝑗0 =0, for all 𝑗. (or may use initial magazine setting) 𝑟=1 𝑛 𝑥 𝑖𝑟 =1, for all 𝑖. (job 𝑖 must be done) 𝑖=1 𝑛 𝑥 𝑖𝑟 =1, for all r. (𝑟−𝑡ℎ job must be done) 𝑥 𝑖𝑟 ≤ 𝑦 𝑗𝑟 , for all 𝑗∈ 𝐽 𝑖 , for all 𝑟,𝑖. 𝑗=1 𝑚 𝑦 𝑗𝑟 ≤𝐵, for all 𝑟. Integer Programming 2018
minimize 𝑗=1 𝑚 𝑟=1 𝑛 𝑠 𝑗 𝑦 𝑗𝑟 − 𝑦 𝑗,𝑟−1 𝑧 𝑗𝑟 ≥ 𝑦 𝑗𝑟 − 𝑦 𝑗,𝑟−1 , for all 𝑗,𝑟, 𝑧 𝑗𝑟 ≥ 𝑦 𝑗,𝑟−1 − 𝑦 𝑗𝑟 , for all 𝑗,𝑟. minimize 𝑗=1 𝑚 𝑟=1 𝑛 𝑠 𝑗 𝑧 𝑗𝑟 𝑧 𝑗𝑟 ≥ 𝑦 𝑗,𝑟−1 − 𝑦 𝑗𝑟 , for all 𝑗,𝑟, 𝑟=1 𝑛 𝑥 𝑖𝑟 =1 , for all 𝑖. 𝑖=1 𝑛 𝑥 𝑖𝑟 =1, for all 𝑟. 𝑥 𝑖𝑟 ≤ 𝑦 𝑗𝑟 , for all 𝑗∈ 𝐽 𝑖 , for all 𝑟,𝑖. 𝑗=1 𝑚 𝑦 𝑗𝑟 ≤𝐵, for all 𝑟. 𝑥 𝑖𝑟 , 𝑦 𝑗𝑟 , 𝑧 𝑗𝑟 ∈{0,1} Integer Programming 2018
Uncapacitated lot sizing (ULS) (NW) Production plan for a 𝑇−period horizon for a single product. 𝑐 𝑡 is the fixed cost (set-up) of producing in period 𝑡. 𝑝 𝑡 is the unit production cost in period 𝑡. ℎ 𝑡 is the unit storage cost in period 𝑡. 𝑑 𝑡 is the demand in period 𝑡. Variables: 𝑦 𝑡 is the amount produced in period 𝑡. 𝑠 𝑡 is the stock at the end of period 𝑡. 𝑥 𝑡 =1 if production occurs in 𝑡, and 𝑥 𝑡 =0 otherwise. Integer Programming 2018
min 𝑡=1 𝑇 𝑝 𝑡 𝑦 𝑡 + ℎ 𝑡 𝑠 𝑡 + 𝑐 𝑡 𝑥 𝑡 𝑦 1 = 𝑑 1 + 𝑠 1 Formulation: min 𝑡=1 𝑇 𝑝 𝑡 𝑦 𝑡 + ℎ 𝑡 𝑠 𝑡 + 𝑐 𝑡 𝑥 𝑡 𝑦 1 = 𝑑 1 + 𝑠 1 𝑠 𝑡−1 + 𝑦 𝑡 = 𝑑 𝑡 + 𝑠 𝑡 for 𝑡=2,…,𝑇 𝑦 𝑡 ≤𝜔 𝑥 𝑡 for 𝑡=1,…,𝑇 𝑠 𝑇 =0 𝑠,𝑦∈ 𝑅 + 𝑇 , 𝑥∈ 𝐵 𝑇 , where 𝜔= 𝑡=1 𝑇 𝑑 𝑡 is an upper bound on 𝑦 𝑡 for all 𝑡. Integer Programming 2018
Alternative formulation: Define 𝑞 𝑖𝑡 as the quantity produced in period 𝑖 to satisfy demand in period 𝑡≥𝑖. min 𝑡=1 𝑇 𝑖=1 𝑡 𝑝 𝑖 + ℎ 𝑖 + ℎ 𝑖+1 +…+ ℎ 𝑡−1 𝑞 𝑖𝑡 + 𝑡=1 𝑇 𝑐 𝑡 𝑥 𝑡 𝑖=1 𝑡 𝑞 𝑖𝑡 = 𝑑 𝑡 , for 𝑡=1,…,𝑇 𝑞 𝑖𝑡 ≤ 𝑑 𝑡 𝑥 𝑖 , for 𝑖=1,…,𝑇 and 𝑡=𝑖,…,𝑇 𝑞∈ 𝑅 + 𝑇(𝑇+1)/2 , 𝑥∈ 𝐵 𝑇 , If we replace 𝑥∈ 𝐵 𝑇 , by 0≤ 𝑥 𝑡 ≤1 for all 𝑡, then the LP has an optimal solution with 𝑥∈ 𝐵 𝑇 . Hence this is a stronger formulation. The formulation is a special case of the uncapacitated facility location problem. Substitute 𝑦 𝑖𝑡 = 𝑞 𝑖𝑡 / 𝑑 𝑡 for all 𝑖 and 𝑡≥𝑖. Extensions: capacitated lot sizing, multiple item lot sizing, … Integer Programming 2018