Primal formulation |
---|
min∑i,jcosti,j⋅xi,j∑jxi,j≤supplyi⊥ui≤0∀i∑ixi,j≥demandj⊥vj≥0∀jxi,j≥0 |
Here ⊥ indicates "with dual ...". The duals for this model are ui and vj. In the model, we have added the (optimal) signs of the duals. It may come as a surprise that the optimality of a solution can be established by just looking at the signs of the marginals (duals and reduced cost). When we print the results of this model, we can see something like:
---- 56 VARIABLE x.L shipment quantities in cases new-york chicago topeka seattle 50.000 300.000 san-diego 275.000 275.000 ---- 56 EQUATION supply.M observe supply limit at plant i seattle EPS ---- 56 EQUATION demand.M satisfy demand at market j new-york 0.225, chicago 0.153, topeka 0.126
Notes:
- The entries x.L are the optimal levels of x, and supply.M/demand.M are the optimal duals of the supply and demand equation.
- The duals of the supply equation are EPS for Seattle and 0 for San Diego. EPS means: this entry is numerical zero, but non-basic. I.e. this model is dual-degenerate. Indeed this model has two different optimal solutions.
- The duals have the correct sign.
Dual formulation |
---|
min∑isupplyi⋅ui+∑jdemandj⋅vjui+vj≤costi,j⊥xi,j≥0∀i,jui≤0,vj≥0 |
Note that ui≤0. Sometimes versions of this dual model are given that have only non-negative variables. In that case ui is preceded by a − sign throughout the model.
--- 76 VARIABLE u.L dual of supply equation ( ALL 0.000 ) ---- 76 VARIABLE v.L dual of demand equation new-york 0.225, chicago 0.153, topeka 0.126 ---- 76 EQUATION dualfeas.M new-york chicago topeka seattle 50.000 300.000 san-diego 275.000 275.000
Notes:
- The dual variables of this dual model correspond to the primal level of the primal model.
- The primal variables of the dual model are equal to the duals found in the solution of the primal model.
- The dual model is not dual-degenerate (no duals or reduced cost that are EPS; you need to inspect the complete solution for this).
Equilibrium formulation |
---|
supplyi≥∑jxi,j⊥ui≥0∀i∑ixi,j≥demandj⊥vj≥0∀jcosti,j+ui≥vj⊥xi,j≥0∀i,j |
Note:
- This is a square system of (linear) equations plus complementarity conditions.
- There is no objective.
- Both the original primal variables xi,j and dual variables ui and vj are present as explicit variables in the model. This is different from the previous models where duals were in the solution but not explicitly in the model.
- We flipped the sign of ui: all prices are positive. So the first constraint is rearranged.
- The first two constraints are market clearing equations. Basically: supply=demand. The last equation is a zero-profit condition: there is no arbitrage.
---- 95 VARIABLE x.L shipment quantities in cases new-york chicago topeka seattle 50.000 300.000 san-diego 275.000 275.000 ---- 95 VARIABLE u2.L dual of supply equation (sign flipped) ( ALL 0.000 ) ---- 95 VARIABLE v.L dual of demand equation new-york 0.225, chicago 0.153, topeka 0.126
References
- trnsport.gms : A Transportation Problem, https://www.gams.com/latest/gamslib_ml/libhtml/gamslib_trnsport.html
- Karush–Kuhn–Tucker conditions, https://en.wikipedia.org/wiki/Karush%E2%80%93Kuhn%E2%80%93Tucker_conditions
- transmcp.gms : Transportation Model as Equilibrium Problem, https://www.gams.com/latest/gamslib_ml/libhtml/gamslib_transmcp.html
- Solving linear complementarity problems without an LCP solver, https://yetanothermathprogrammingconsultant.blogspot.com/2021/05/solving-linear-complementarity-problems.html
Appendix: GAMS model
*---------------------------------------------------------- |
No comments:
Post a Comment