I'm trying to find the dual of an LP in graph theory but get stuck.
For a graph $G=((S\cup T), E)$, where $\delta(s)$ denotes the set of edges incident to vertex $s$,
\begin{aligned} \min \max_{s\in S} \sum_{t \in \delta(s)}x(st) & \\ \text { s.t. } \sum_{s \in \delta(t)}x(st) &=1 & \forall t \in T \\ x & \geq 0, \end{aligned} Thanks in advance!
The first step is to deal with the min-max objective function. If you deal with these often enough, you might derive a general rule, but one way to turn this into a standard linear program is as follows.
Once you have done this, you can start dealing with the LP in the usual way. Since we have a constraint for every $s \in S$, the dual will have a variable for every $s \in S$, as well as a variable for every $t \in T$ coming from the constraints you already had.