If-then constraints with binary variables in Linear Programming

1.4k Views Asked by At

How can the constraint: if $x_1=1$ then $x_2+x_3\geq 1$ be written in linear programming if the variables $x_1,x_2,x_3$ are binary?

1

There are 1 best solutions below

0
On

$-x1 + x2 + x3 \geq 0 $

should be sufficient.