Consider the LP
$min f(x_1,...,x_n) = \sum_{i=1}^n i x_i $
such that
\begin{align*} x_1 \geq 1 \\ x_1 + x_2 \geq 2 \\ ... \\ x_1 + ... + x_n \geq n \end{align*}
Im trying to find the Dual and an optimal solution to the LP
attempt
The dual is easy to find:
$max f = \sum_{i=1}^n i x_i $
such that
\begin{align*} x_1+x_2+...+x_n \geq 1 \\ x_2 + ... + x_n \geq 2 \\ ... \\ x_n \geq n \end{align*}
but, how can we find the optimal solution?