Skip to main content

Questions tagged [linear-programming]

Questions on linear programming, the optimization of a linear function subject to linear constraints.

Filter by
Sorted by
Tagged with
0 votes
0 answers
17 views

Given a convex polytope $P = \{ x \in \mathbb{R}^n \mid Ax \leq b \}$, I want to know whether we can use Fourier-Motzkin elimination (or an adaptation therefore) to compute one vertex of $P$ (or to ...
Mens's user avatar
  • 1
0 votes
1 answer
85 views

Translating to English from a non-English physics book about measurements: Anif has $8$ big marbles and $15$ small marbles. The weight of the big and small marbles are $37.5$ and $12.5$ respectively. ...
user516076's user avatar
  • 2,491
0 votes
0 answers
18 views

Ok, before anyone responds with the fact that the optimal value function of an LP is not twice differentiable.....I know, I know. I am not sure how to write what I am asking which is a big part of why ...
user8099327's user avatar
1 vote
0 answers
25 views

Given a list of constraints $$ F_i = \{ x\in\mathbb{R}^n\mid L_i(x) \leq c_i \} $$ where $L_i\in L(\mathbb{R}^n,\mathbb{R})$ and $c_i\in\mathbb{R}$ for every $i\in\{ 0,\dots,m \}$ with $m \geq n$, ...
virtualcode's user avatar
1 vote
1 answer
151 views

Let's consider a two-player finite strategic form game. Suppose $A$ is the payoff matrix for the row player playing mixed strategy $x$, $B$ is the payoff matrix for the column player playing mixed ...
Your neighbor Todorovich's user avatar
0 votes
0 answers
53 views

I have a problem that I'm trying to solve involving a bicycle ride share program. Riders rent bikes of various kinds (electric or normal-non powered) at various stations in a city, and after they are ...
Hal's user avatar
  • 1
1 vote
1 answer
43 views

I'm trying to solve the following linear optimization/programming problem: $$ \begin{aligned} &\textrm{maximize (or minimize)}\quad \pmb{a}^{\intercal}\, \pmb{x} \\&\textrm{given the ...
pglpm's user avatar
  • 941
0 votes
0 answers
36 views

Context I'm studying linear programming and trying to understand when different solution methods are most appropriate. I understand that the simplex method is generally better than vertex enumeration ...
Natch's user avatar
  • 83
0 votes
0 answers
54 views

I am learning about linear programming, and I have come across several definitions of when two general optimization problems are considered equivalent. However, I find these definitions a bit ...
Zhiyi Li's user avatar
0 votes
0 answers
45 views

Max z = $2x_{1} + 3x_{2} + 4x_{3} + x_{4} + 7x_{5} + 5x_{6} $ Subject to x$_{1} + x_{2} ≤ 1 $ x$_{3} + x_{4} ≤ 1 $ x$_{5} + x_{6} ≤ 1 $ x$_{1} + x_{3} + x_{5} = 1 $ x$_{2} + x_{4} + x_{6} = 1$ ...
917's user avatar
  • 101
0 votes
1 answer
95 views

Create a closed tour visiting the numbers. The tour must start and end at the same cell. During the tour, you can only visit the neighboring cell (up,down,left,right). The tour cannot contain a number ...
Oytunxxx's user avatar
3 votes
2 answers
102 views

It's not hard to show that the maximum eigenvalue of a matrix $A\in \mathbb{S}^n$ can be calculated through the following SDP: \begin{align*} \max&\ Tr(AX) \\ \text{subject to}& \ Tr(X) = 1\\ ...
Risss's user avatar
  • 93
2 votes
1 answer
45 views

Consider the linear constraints: $$ x_{ab} + x_{a'b'} \leq 1 \quad\forall a\neq a'\in A, b,b'\in B\\ x_{ab}\geq 0 \quad\forall a\in A, b\in B. $$ It is known that any vertex of this LP is half-...
Math's user avatar
  • 894
0 votes
1 answer
101 views

I am struggling to formulate this disaggregation problem as a network flow. Can anyone help me see a way to make things work? I am not fully familiar with all of the tricks and gadgets for network ...
benzuwnx's user avatar
0 votes
0 answers
36 views

Let $d\in \mathbb{N}$ be a fixed constant. Let $V\subseteq \{-1,0,1\}^d$ be some set of vectors and let $w\in \mathbb{Z}^d$. Consider the linear program find $ x\in \mathbb{R}^V $ such that: $ \sum_{v\...
ajdy's user avatar
  • 101
0 votes
0 answers
33 views

Apologies if the question has already been asked. Suppose I have a primal LP problem: $$\text{Max }z= c^Tx \text{ such that } Ax\leq b$$ which is known to be unbounded, especially in the sense that ...
roglemorph's user avatar
0 votes
0 answers
31 views

I am working on implementing a first order method for linear programming and would like to parallelize part of it by trying the following: bounding the feasible region in a ball picking equally ...
Titus's user avatar
  • 1
0 votes
0 answers
40 views

I am not sure how to express this well in words or equations, so let me give a simplified example where the solution is easy. Suppose I have a series of time intervals, and different sets of "...
Ben Farmer's user avatar
0 votes
0 answers
15 views

Given two integers $k$ and $n$, and a $k\times n$ matrix $A$. There are $k\times n$ variables $x_{i,j}$ for each $i\in [k]$ and $j\in [n]$. For a pair of subsets $K\subseteq [k]$ and $T\subseteq [n]$, ...
Amritanshu singh's user avatar
0 votes
0 answers
67 views

I am trying to learn linear optimisation using the book introduction to linear optimisation by bertsimas. I am having trouble understanding the concepts of polyhedral representation and polyhedrally ...
qwerty's user avatar
  • 1
2 votes
1 answer
105 views

Consider the problem $$\max f(x)=-3x_1+2x_2$$ subject to $$2x_1-x_2\geq -2\\ x_1-2x_2\leq 3\\ x_1+2x_2\leq 11\\ x_1\geq 0\\ x_2\geq 0 $$ If one let $$A=\left[\begin{array}{cc} -2 & 2\\ 1 & -...
Gomes93's user avatar
  • 2,349
0 votes
0 answers
43 views

I encountered an implementation of simplex method where the initial basic feasible solution is found by a heuristic rule as follows: The procedure starts with a standard form with slack variables $\...
Claudy Forrest's user avatar
0 votes
0 answers
35 views

I'm trying to find a simple algorithm to solve the following problem: I have a set of textboxes $S$. For textbox $t_i \in S$ I have a width $W_i$ and length $L_i$ and a limited piece of line $l_i$ in ...
hasdrubal's user avatar
  • 143
1 vote
0 answers
109 views

There are many ILPs for Asymmetric TSP two of these are the DFJ formulation and the MTZ formulation: The cut (DFJ) formulation is the following \begin{align*} \min &\; \displaystyle\...
aram's user avatar
  • 2,005
0 votes
0 answers
77 views

Consider the following set of constraints: $$ \begin{aligned} 3 x + y + 2 z &\leq 30 \\ x + y + z &\geq 8 \\ 4 y + 2 z &\geq 15 \\ x , y , z &\geq ...
elang's user avatar
  • 1

1
2 3 4 5
105