Wiki

Clone wiki

symja_android_library / Symbols / LinearProgramming

LinearProgramming

LinearProgramming(coefficientsOfLinearObjectiveFunction, constraintList, constraintRelationList)
the LinearProgramming function provides an implementation of George Dantzig's simplex algorithm for solving linear optimization problems with linear equality and inequality constraints.

See:

Examples

>>> LinearProgramming[{-2, 1, -5}, {{1, 2, 0},{3, 2, 0},{0,1,0},{0,0,1}}, {{6,-1},{12,-1},{0,1},{1,0}}]
{4.0,0.0,1.0}

solves the linear problem:

Minimize -2x + y - 5

with the constraints:
  x  + 2y <=  6
  3x + 2y <= 12
        y >= 0

Updated