I've been working on a mixed integer linear program for quite a while now and I need to set up constraints involving binary variables. I just can't find the correct answer to the following problem. Consider this:
We have three binary variables $x$, $y$ and $z$. If $x=0$, then $y=1$ and $z=1$. How do we express this statement using inequalities involving the three binary variables?
I'm sorry if the question is trivial, I guess the answer is probably really easy and obvious, but somehow my brain just seems to overcomplicate things here. I would really appreciate some help. Thanks!
I guess: $2x+y+z\geq 2$.
For $x=0$ you need to have $y=z=1$ to satisfy this. If $x=1$ then it is true independently of what $y,z\in\{0,1\}$ are.