Group Abstract Group Abstract

Message Boards Message Boards

Why is this not a quantified system of equations and inequalities?

Posted 10 years ago

I'm attempting to Reduce four equations with respect to four unknown variables as follows:

Reduce[{
   w == Max[(72 - x - 3 y)/4, 0],
   x == Max[(60 - w - z)/2, 0],
   y == Max[(48 - z - 2 w)/3, 0],
   z == Max[(60 - y - x)/2, 0]}
  {w, x, y, z}
 ]

When I evaluate, Mathematica tells me this system is not a quantified system of equations and inequalities. Can anybody help explain why?

POSTED BY: Levi Crews
Posted 10 years ago

You are missing a comma: ;-)

In[4]:= Reduce[{w == Max[(72 - x - 3 y)/4, 0], 
  x == Max[(60 - w - z)/2, 0], y == Max[(48 - z - 2 w)/3, 0], 
  z == Max[(60 - y - x)/2, 0]}, {w, x, y, z}]

Out[4]= w == 78/5 && x == 48/5 && y == 0 && z == 126/5
POSTED BY: David Keith
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard