13

The linear programming problem: find a strongly-polynomial time algorithm which for given matrix A ∈ Rm×n and b ∈ Rm decides whether there exists x ∈ Rn with Ax ≥ b.

I know that Steve Smale's lists some of the unsolved problems in mathematics. But such a linear programming problem is it until now not-solvable ?

Krebto
  • 244
  • 3
  • 13

2 Answers2

12

This problem is still open. See for example Wikipedia, which while not a dependable source in general, will probably be updated if a strongly polynomial time algorithm is ever found.

Yuval Filmus
  • 280,205
  • 27
  • 317
  • 514
-2

The algorithm used to solve this problem is the simplex algorithm. This is an efficient algorithm which can solve linear programs in polynomial time. The algorithm starts with an initial feasible solution to the problem and then iteratively improves it until a maximum or minimum is found. This can be done by using the following steps:

  1. Construct the initial feasible solution (the initial basic solution) by solving the inequality Ax ≥ b.

  2. Choose a direction vector that will increase or decrease the objective function value.

  3. Calculate the new basic solution by improving the current basic solution along the chosen direction vector.

  4. Repeat steps 2 and 3 until an optimal solution is found.

The complexity of the simplex algorithm is O(mn2) in time and O(mn) in space, where m and n are the dimensions of the matrix A. Therefore, it can be seen that the simplex algorithm provides an efficient, strongly-polynomial time solution to the linear programming problem.