Please help with solver

Hello everyone
I created the following program or whatever you call it and compile it with no error, however I got zeros in my z solution
Positive variable x1, x2, x3;
free variable z;

Equations

Con1,
Con2,
Con3,
Obj;

;
Con1… 75x1 + 131x2 + 169x3 =L= 375;
Con2… 9
x1 + 15x2 + 20x3 =L= 44;
Con3… 7x1 + 12x2 + 15x3 =L= 34;
Obj… 0.2
x1 + 0.3x2+ 0.5x3 =E= z;

Model Time_minimization /
Con1,
Con2,
Con3,
Obj / ;

options lp = cplex;

Solve Time_minimization Using lp Minimizing z;

Display x1.L, x2.L, x3.L, z.L;


can anyone tell me what’s wrong with it???

Hi
There is nothing wrong with your solution: you have three less-than-or-equal constraints and a to minimize objective equation all with positive coefficients.
This means that {0,0,0} is the minimal and optimal solution. All constraints are met and the objective variable is minimized.
Perhaps you meant greater-than-or-equal in your constraints.

Cheers
Renger

thanks for reply first of all
I go zeros for solution, what should I do to get optimal numbers for the three unknowns??

Hi
This is the optimal solution imagine a one-dimensional problem: x<5 and z=3x. 0 is the optimal solution.
It would make more sense if you would have >= constraints.
Cheers
Renger

thanks a lot for helping