Simplex algorithm: Difference between revisions

From Cornell University Computational Optimization Open Textbook - Optimization Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 71: Line 71:
2x_1 + x_2 + x_3 &\leq 2 \\
2x_1 + x_2 + x_3 &\leq 2 \\
x_1 + 2x_2 +3x_3 &\leq 4\\
x_1 + 2x_2 +3x_3 &\leq 4\\
2x_1 + 2x_2 + x_3 &\leq 8 \end{align}</math>
2x_1 + 2x_2 + x_3 &\leq 8 \\
x_1,x_2,x_3  &\geq 0
\end{align}</math>


With adding slack variables to get the following equations:
With adding slack variables to get the following equations:
Line 79: Line 81:
2x_1 + x_2 + x_3 + s_1 &= 2 \\
2x_1 + x_2 + x_3 + s_1 &= 2 \\
x_1 + 2x_2 + 3x_3 + s_2 &= 4\\
x_1 + 2x_2 + 3x_3 + s_2 &= 4\\
2x_1 + 2x_2 + x_3 + s_3 &= 8 \end{align} </math>
2x_1 + 2x_2 + x_3 + s_3 &= 8 \\
x_1,x_2,x_3,s_1,s_2,s_3 &\geq 0 \end{align} </math>
 
 
The simplex tableau can be derived as following:
 
<math>
\begin{array}{c c c c c c c | r}
x_1 & x_2 & x_3 & s_1 & s_2 & s_3 & z & b \\
\hline
  2 & 1 & 1 & 1 & 0 & 0 & 0 & 2 \\
  1 & 2 & 3 & 0 & 1 & 0 & 0 & 4 \\
  2 & 2 & 1 & 0 & 0 & 1 & 0 & 8 \\
  \hline
-4 & -1 & -4 & 0 & 0 & 0 & 1 & 0
\end{array} </math>
 
In the last row, the column with the smallest value should be selected. Although there are two smallest values, the result will be same no matter of which one is selected first. For this problem, the first column is selected. After the least coefficient is found, the pivot process will be conducted by searching for the coefficient <math> \frac{b_i}{x_i} </math>. Since the value for the first row is 1 and second row is 4. Thus, the first row should be pivoted. And following tableau can be created:
 
<math>
\begin{array}{c c c c c c c | r}
x_1 & x_2 & x_3 & s_1 & s_2 & s_3 & z & b \\
\hline
  1 & 0.5 & 0.5 & 0.5 & 0 & 0 & 0 & 1 \\
  1 & 2 & 3 & 0 & 1 & 0 & 0 & 4 \\
  2 & 2 & 1 & 0 & 0 & 1 & 0 & 8 \\
  \hline
-4 & -1 & -4 & 0 & 0 & 0 & 1 & 0
\end{array} </math>
 
By performing the row operation still every other rows (other than first row) in column 1 are zeroes:
 
<math>
\begin{array}{c c c c c c c | r}
x_1 & x_2 & x_3 & s_1 & s_2 & s_3 & z & b \\
\hline
  1 & 0.5 & 0.5 & 0.5 & 0 & 0 & 0 & 1 \\
  0 & 1.5 & 2.5 & -0.5 & 1 & 0 & 0 & 3 \\
  0 & 1 & 1.5 & -0.5 & 0 & 1 & 0 & 6 \\
  \hline
0 & 1 & -2 & 2 & 0 & 0 & 1 & 4
\end{array} </math>
 
Because there is one negative value in last row, the same processes should be performed again. The smallest value in the last row is in the third column. And in the third column, both the first row and second row have the same smallest coefficient of <math> /frac{b_i}{x_i}</math> which is 2. Thus, either of them could be selected for calculation. In this problem, the first row is selected. The simplex tableau

Revision as of 18:30, 18 November 2020

Author: Guoqing Hu (SysEn 6800 Fall 2020)

Steward: Allen Yang, Fengqi You

Introduction

Simplex algorithm (or Simplex method) is a widely-used algorithm to solve the Linear Programming(LP). Simplex algorithm can be thought as one of the elementary steps for solving the inequality problem, since many of those will be converted to LP and solved via Simplex algorithm[1]. Simplex algorithm has been proposed by George Dantzig, initiated from the idea of step by step downgrade to one of the vortices on the convex polyhedral[2]. "Simplex" could be possibly referred as the top vertex on the simplicial cone which is the geometric illustration of the constraints within Linear Problem[3].

Algorithmic Discussion

There are two theorem in LP:

  1. The feasible region for any LP problem is a convex set (Every linear equation's second derivative is 0, implying the monotonicity of the trend). Therefore, if an LP has an optimal solution, there must be an extreme point of the feasible region that is optimal
  2. For any LP, there is only one extreme point of the LP's feasible region regarding to every basic feasible solution. Plus, there will be at minimum of one basic feasible solution corresponding to every extreme point in the feasible region.[4]
Geometric Illustration of LP problem

Based on two theorems above, the geometric illustration of the LP problem could be depicted. Each line of this polyhedral will be the boundary of the LP constraints, in which every vertex will be the extreme points according to the theorem. Simplex method is the way to reasonably sort out the shortest path to the optimal solutions.

Consider the following expression as the general linear programming problem standard form:

With the following constraints:

The first step of the simplex method is to add slack variables and symbols which represent the objective functions:

The new introduced slack variables may be confused with the original values. Therefore, it will be convenient to add those slack variables to the end of the list of x-variables with the following expression:

With the progression of simplex method, the starting dictionary (which is the equations above) switches between the dictionaries in seeking for optimal values. Every dictionary will have m basic variables which form the feasible area, as well as n non-basic variables which compose the objective function. Afterward, the dictionary function will be written in the form of:


Where the variables with bar suggest that those corresponding values will change accordingly with the progression of simplex method. The observation could be made that there will specifically one variable goes from non-basic to basic and one acts oppositely. As this kind of variable is referred as entering variable. Under the goal of increasing Φ, the entering variables are selected from the set {1,2,...,n}. As long as there are no repetitive entering variables can be selected, the optimal values will be found. The decision of which entering variable should be selected at first place should be made based on the consideration that there usually are multiple constraints (n>1). For Simplex algorithm, the coefficient with least value is preferred since the major objective is maximization.

The leaving variables are defined as which go from basic to non-basic. The reason of their existence is to ensure the non-negativity of those basic variables. Once the entering variables are determined, the corresponding leaving variables will change accordingly from the equation below:

Since the non-negativity of entering variables should be ensured, the following inequality can be derived:

Where xk is immutable. The minimum xi should be zero to get the minimum value since this cannot be negative. Therefore, the following equation should be derived:

Due the nonnegativity of all variables, the value of xk should be raised to the largest of all of those values calculated from above equation. Hence, the following equation can be derived:

Once the leaving-basic and entering-nonbasic variables are chosen, reasonable row operation should be conducted to switch from current dictionary to the new dictionary, as this step is referred as pivot.[4]

Numerical Example

Considering the following numerical example to gain better understanding:

with the following constraints:

With adding slack variables to get the following equations:


The simplex tableau can be derived as following:

In the last row, the column with the smallest value should be selected. Although there are two smallest values, the result will be same no matter of which one is selected first. For this problem, the first column is selected. After the least coefficient is found, the pivot process will be conducted by searching for the coefficient . Since the value for the first row is 1 and second row is 4. Thus, the first row should be pivoted. And following tableau can be created:

By performing the row operation still every other rows (other than first row) in column 1 are zeroes:

Because there is one negative value in last row, the same processes should be performed again. The smallest value in the last row is in the third column. And in the third column, both the first row and second row have the same smallest coefficient of which is 2. Thus, either of them could be selected for calculation. In this problem, the first row is selected. The simplex tableau