I've come across a problematic LP question and unfortunately it's been a while since I solved these type of problems
the problem:
you have a graph $G$, the edges are $E$, Vertices are $V$, edges are denoted by $(u,v)$ :
\begin{align} \max \sum_{(u,v)\in E}y(u,v) &\\ s.t \\ y(u,v) &\le x_u && \forall (u,v) \in E \\ y(u,v) &\le x_v && \forall (u,v) \in E \\ \sum_{v\in V} x_v &\le 1 \\ y(u,v) &\ge 0 && \forall (u,v) \in E \\ x_v &\ge 0 && \forall v \in V \end{align}
I only want to write the Dual LP of this primal problem at the moment, The thing I'm having trouble with is that I don't understand how to write this LP in a "standard form", I remember that I should bring the problem to a form:
\begin{align} \max c^T x \\ Ax &\le b \\ x &\ge 0 \\ \end{align}
and from there a dual problem is easy to write, but here it seems that its not that straightforward. Any help would be appreciated
Which gives that the problem is (since just $b_3$ is non-zero: $ min\ b^Ty = min\ \gamma$ I understand the non negativity constraints, But I'm still having trouble understanding how to get the first two constraints you've written. Again, thank you!
– Edward Josef Mar 13 '24 at 17:24