Chapter 5 Solving Linear Optimization Problems using Software
As we developed the Simplex Method to solve Linear Optimization Problems in Chapter 3, we noted that the method systematically performed matrix pivots to find the optimal points. However, once problems scale up, the matrix sizes increase and the number of pivots increase. Even with software like WebCAS to handle the arithmetic, it can be a lengthy solve to get the optimal answer.
And then if we have problems in which variables have integer or binary constraints, using either Gomory’s method or branch and bound, can take a lot more steps.
In this section, we will use Julia to construct models and solve them in a single step.
