I have a linear programming problem that has an optimal solution in its primal form, but I can't seem to find an optimal solution, or a solution in general, to its dual problem. Is that possible?
The primal is:
min -4x + y
subject to
5x - 2y <= 3
3x + y <= 2
x,y >= 0
This gives optimal solution x=7/11, y=1/11.
The dual problem is:
max 3x' + 2y'
subject to
5x' + 3y' <= -4
-2x' + y' <= -1
x',y' <= 0
This has no solution. Did I calculate the dual wrong or is this possible?