I have an integer programming problem:
max $F = −4x_1 + 3x_2$
subject to:
- $−x_1 + 3x_2 ≤ 9$
- $7x_1 − 3x_2 ≥ −7$
- $x_1 ≤ 3, x_2 ≥ 0$, and integer valued
How can I model the restriction that $x_1 > 2$ and $x_2 > 3$ cannot both hold at the same time?? I'm told to give explicit numerical values for any “Big M” that I use.