ShowSimplex

Linear Optimization

© 2002 Inductive Solutions, Inc. All rights reserved.

Help
and Documentation

What ShowSimplex Does

ShowSimplex solves linear optimization problems using a variation of the classic Simplex Algorithm: a technique discovered by George Dantzig in the 1940's.  Linear optimization is also known as linear programming.  (The word programming is British English for scheduling; it does not refer to computer programming.  One of the most popular applications of linear optimization is resource scheduling.)  Here is an example of a linear programming problem that ShowSimplex solves:

Find values of x1, x2, x3, x4 that Maximixes z = 4x1+ 6x2+ 7x3+ 8x4   (The Objective Function)
Subject to
2x1+ 3x2+ 4x3+ 7x4 <=4600 (Constraint C1: Type is <=inequality)
3x1+ 4x2+ 5x3+ 6x4 <=5000 (Constraint C2: Type is <=inequality)
1x4 >=400 (Constraint C3: Type is >=inequality)
1x1+ 1x2+ 1x3+ 1x4 =950 (Constraint C4: Type is =equality)
x1>=0,x2>=0,x3>=0,x4>=0 (Default non-negativity constraints)

All the expressions are linear: there are no products like x1*x2 or x3*x3 or forms like cosine(x1). So mathematically at least the functional forms are simple. The objective function coefficients c1, c2, c3, c4 are sometimes called costs. The 4 constants the b1, b2, b3, b4 -- the Right Hand Sides of the inequality-equality constraints are sometimes abbreviated RHS. So, in this sample problem, there are:

ShowSimplex finds the solution to this problem. In this case, the solution is:

Solution: x1=0, x2= 400, x3=150, x4= 400 with z= 6650.

ShowSimplex also displays the classical Sensitivity Analysis Reports : these show how sensitive the solutions are with respect to changes in the objective function coefficients and the RHS constants. (This means that you do not have to run ShowSimplex again to see new values for the variables or objective function after making changes to a coefficient or a RHS. These sensitivity analysis reports were developed in early days when computing resources were very expensive.)

Some classical applications of linear programming are in the sample Excel ShowSimplex Workbook. The workbook contains linear programming problem formulations and ShowSimplex representations for

A Note about Maximize/Minimize

Some optimization problems are more naturally expressed in terms of "Minimizing and objective function." To convert a minimizing representation into a maximizing representation, all we have to do is observe that:

Finding an x* that maximizes f(x) is the same as finding an x* that minimizes- f(x)

So if you need to find x* that minimizes f(x), then just find an x* that maximizes -f(x). To minimize an objective function, just maximize its negation and keep everything else the same.

An example of an optimization problem that is more naturally expressed in terms of "Minimizing and objective function" is the diet problem: we want to find the minimum amount of food components needed to meet certain dietary requirements (see the ShowSimplex Workbook).

ShowSimplex Inputs ...

The inputs to ShowSimplex is a representation of your linear programming problem: you need to specify the number of variables, the number of the three different constraints, and a representation of the objective function and constraint constants and coefficients. The ShowSimplex input representation for the above linear programming problem is:
How many variables?
Note: Maximum Number of Variables: 60
How many "<="
constraints?
How many ">="
constraints?
How many "="
constraints?

Note: Maximum Number of All Constraints: 60
Copy a Table in tab-delimited text and paste it here:

The first 4 input boxes allow you to specify the number of variables and the number of the three different constraints. The text area box represents the objective function and constraints as a table. The table must be in tab-delimited format: the columns are separated by tabs and the rows are separated by carriage returns. Tab-delimited text is automatically done when you copy a table from an Excel spreadsheet to the ShowSimplex text area box.

Here is a text file containing the above linear programming representation table in tab-delimited text.

Here is a Microsoft Excel file containing the table in tab-delimited text.

Conventions

The first row of the text area box
0 4 6 7 8
represents the objective function z= 0 + 4x1 + 6x2 + 7x3. Note that the constant (in this case 0), is in the first column. The subsequent rows represent the constraints. Note that the ShowSimplex convention requires that all constraints be grouped according to type and order: first we put the <= constraints; second, the >= constraints; third, the = constraints. The second row
4600 -2 -3 -4 -7
is the C1 constraint 2x1+ 3x2+ 4x3+ 7x4 <= 4600. It is the first <= constraint. Note that the RHS, 4600 is in the first column. Also note that in the ShowSimplex convention, the constraint coefficients are all negated. The third row
5000 -3 -4 -5 -6
is the C2 constraint 3x1+ 4x2+ 5x3+ 6x4 <= 5000. It is the second <= constraint. Note that the RHS, 5000 is in the first column. Also note that in the ShowSimplex convention, the constraint coefficients are all negated. The fourth row
400 0 0 0 -1
is the C3 constraint 1x4 >= 400. It is the first and only >= constraint. Note that the RHS, 5000 is in the first column. Also note that in the ShowSimplex convention, the constraint coefficients are all negated. The fifth row
950 -1 -1 -1 -1
is the C4 constraint x1+ x2+ x3+ x4 = 950. It is the first and only = constraint. Note that the RHS, 950 is in the first column. Also note that in the ShowSimplex convention, the constraint coefficients are all negated.

If you want to try a sample run, click here .

...and Outputs

The first ShowSimplex output is the web page that appears after you press the Grab Constraints button. It is a confirmation page that verifies that the input problem is the one you want to solve. In the above sample problem, the page looks like this:

Step 2: Verify the specification you submitted:

4 Variables; 2 <= Constraints; 1 > = Constraints; 1 = Constraints.

The table has 5 Rows and 5 Columns.

Const. X1 X2 X3 X4
0.00 4.00 6.00 7.00 8.00
4600.00 -2.00 -3.00 -4.00 -7.00
5000.00 -3.00 -4.00 -5.00 -6.00
400.00 0.00 0.00 0.00 -1.00
950.00 -1.00 -1.00 -1.00 -1.00

Verify The Problem

Maximixe z = 4.00x1+ 6.00x2+ 7.00x3+ 8.00x4
Subject to
2.00x1+ 3.00x2+ 4.00x3+ 7.00x4 <= 4600.00  (Cons 1)
3.00x1+ 4.00x2+ 5.00x3+ 6.00x4 <= 5000.00  (Cons 2)
1.00x4 >= 400.00  (Cons 3)
1.00x1+ 1.00x2+ 1.00x3+ 1.00x4 = 950.00  (Cons 4)


Sample Problem
Press for Step 3: Find the Maximum z by running the Simplex Algorithm


The second ShowSimplex output is the web page that appears after you press the Run ShowSimplex button. This button runs the server program that solves the problem and produces the sensitivity reports. In the above sample problem, the page looks like this: (Note that documentation about the terms and sensitivity reports are shown in the hyperlinks).

You are allowed to use ShowSimplex 28 more times over a period of 30 more days.

Verify The Problem

Maximixe z = 4.00x1+ 6.00x2+ 7.00x3+ 8.00x4
Subject to
2.00x1+ 3.00x2+ 4.00x3+ 7.00x4 <= 4600.00  (Cons 1)
3.00x1+ 4.00x2+ 5.00x3+ 6.00x4 <= 5000.00  (Cons 2)
1.00x4 >= 400.00  (Cons 3)
1.00x1+ 1.00x2+ 1.00x3+ 1.00x4 = 950.00  (Cons 4)

The Solution

The Maximum z = 6650.00

Optimal Solution: Values of Non-Zero Variables

Var.Optimal Value
x2400.00000
x3150.00000
x4400.00000

Reduced Cost for Non-Basic Variables

Var.Reduced Cost
x11.00000

Slack Values for Constraints

ConstraintSlack Value
Cons 2250.00000

Shadow Prices for Constraints

ConstraintShadow Price
Cons 11.00000
Cons 3-2.00000
Cons 43.00000

Sensitivity:Constraint Constants (RHS)

Constraint# ALLOW inc ALLOW dec RHS (b)
Cons 1250.00000 150.00000 4600.00000
Cons 2 INF 250.00000 5000.00000
Cons 337.50000 125.00000 400.00000
Cons 450.00000 100.00000 950.00000

Sensitivity:Objective Coefficients (Costs)

Coefficient#ALLOW inc ALLOW dec Coef.(c)
c11.00000 INF 4.00000
c20.66667 0.50000 6.00000
c31.00000 0.50000 7.00000
c42.00000 INF 8.00000

Final Simplex Tableau

bSL4x1SL3SL1
z 6650.000 3.000 -1.000 -2.000 -1.000
x3 150.000 -3.000 1.000 -4.000 -1.000
SL2 250.000 -1.000 0.000 2.000 1.000
x4 400.000 0.000 0.000 1.000 0.000
x2 400.000 4.000 -2.000 3.000 1.000