From: sweeten singh on
Can any one tell me how we can decide the upper bounds and lower bounds for an optimization problem having three constraints equations and three variables. eg.



{


x(1)+x(2)+x(3) =>1



3*x(1)+2*x(2)+x(3)<=6



x(3)>x(2) >x(1)


}



Thanks in advance.
From: John D'Errico on
"sweeten singh" <sweetendil(a)gmail.com> wrote in message <hp6r5j$rop$1(a)fred.mathworks.com>...
> Can any one tell me how we can decide the upper bounds and lower bounds for an optimization problem having three constraints equations and three variables. eg.
>
>
>
> {
>
>
> x(1)+x(2)+x(3) =>1
>
>
>
> 3*x(1)+2*x(2)+x(3)<=6
>
>
>
> x(3)>x(2) >x(1)
>
>
> }
>
>
>
> Thanks in advance.

How can we help YOU "decide " on bounds? The crystal
ball is cloudy today.

These are inequality constraints. They tell you NOTHING
about bounds.

And by the way, there are FOUR constraints here. (Count
the number of comparisons that you make here. Just
because you choose to write them compactly matters
not.)

John