Back

Inferring inequalities

If \(x\) is at least \(2\) and \(y\) is at least \(3\), it is not hard to convince ourselves that \(x+y\) must be at least \(5\).

More generally, if \(a\), \(b\), \(c\), and \(d\) are real numbers such that \(a \geq b\) and \(c \geq d\), then \(a + c \geq b + d\). We say that \(a + c \geq b + d\) is inferred from \(a \geq b\) and \(c \geq d\). Casually, we also say that "adding" the two inequalities gives \(a + c \geq b + d\).

Note that adding inequalities require that the inequalities to have the same sense; in other words, adding a mixture of \(\leq\)-inequalities and \(\geq\)-inequalities is not allowed for obvious reasons. However, adding a mixture of equalities and inequalities with the same sense is valid. For example, if \(x\) and \(y\) are real numbers satisfying \begin{align*} x - 2y & \geq 5 \\ 3x + y & = 7, \end{align*} then \(x\) and \(y\) must also satisfy \(4x - y \geq 12\). Going one step further, we can add scalar multiples of inequalities to obtain new inequalities under appropriate conditions. For example, if we have \[a\geq b, c \leq d, \alpha \geq 0, \beta \leq 0,\] then \[\alpha a + \beta c \geq \alpha b + \beta d.\]

In general, suppose that \(\mathbf{x} \in \mathbb{R}^n\) satisfies the system \begin{align} \mathbf{P} \mathbf{x} & \geq \mathbf{p} \\ \mathbf{Q} \mathbf{x} & \leq \mathbf{q} \\ \mathbf{R} \mathbf{x} & = \mathbf{r} \end{align} where \(\mathbf{P} \in \mathbb{R}^{m \times n}\), \(\mathbf{p} \in \mathbb{R}^m\), \(\mathbf{Q} \in \mathbb{R}^{m' \times n}\), \(\mathbf{q} \in \mathbb{R}^{m'}\), \(\mathbf{R} \in \mathbb{R}^{\bar{m} \times n}\), \(\mathbf{r} \in \mathbb{R}^{\bar{m}}\) for some nonnegative integers \(m, m', \bar{m}\). If \(\mathbf{f} \in \mathbb{R}^m\) with \(\mathbf{f} \geq \mathbf{0}\), \(\mathbf{g} \in \mathbb{R}^{m'}\) with \(\mathbf{g} \leq \mathbf{0}\), and \(\mathbf{h} \in \mathbb{R}^{\bar{m}}\), then \(\mathbf{x}\) also satisfies \[\mathbf{c}^\mathsf{T} \mathbf{x} \geq \gamma\] where \(\mathbf{c} = \mathbf{f}^\mathsf{T}\mathbf{P}+ \mathbf{g}^\mathsf{T} \mathbf{Q} +\mathbf{h}^\mathsf{T} \mathbf{R}\) and \(\gamma = \mathbf{f}^\mathsf{T}\mathbf{p}+ \mathbf{g}^\mathsf{T} \mathbf{q} +\mathbf{h}^\mathsf{T} \mathbf{r}\). We say that the inequality \(\mathbf{c}^\mathsf{T} \mathbf{x} \geq \gamma\) is inferred from the system above. To simplify the language for describing linear constraint inference, we often assign labels to the constraints and write linear combinations of them. For example, say we have the system \begin{align*} x_1 + 2x_2 & \geq 2 && (\text{A}) \\ -x_1 + x_2 & \leq 1 && (\text{B}) \\ 3x_1 - x_2 & = -1. && (\text{C}) \end{align*} Then \(2\times (\text{A}) +(-1)\times (\text{B}) + (\text{C})\) refers to the inequality \(6x_1+2x_2 \geq 2\) since \(2(x_1+2x_2)+(-1)(-x_1+x_2)+(3x_1 - x_2)\) gives \(6x_1 + 2x_2\) and \(2(2) + (-1)(1) + (-1)\) is \(2\).

Worked examples

  1. Determine the maximum value of \(\mu\) such that \(x + y \geq \mu\) can be inferred from the system \begin{align*} 2x + y & \geq 2 \\ x + 3y & \geq 1 \\ 3x + 2y & \geq 6 \end{align*}

  2. Show that the inequality \(x + 2y \geq 3\) can be inferred from the system \begin{align*} 2x + y & \geq 2 \\ x + 5y & \geq 7 \\ -x + y & = 1 \\ \end{align*} in infinitely many ways.

  3. Determine the optimal value of \[ \begin{array}{rl} \text{Minimize} & x + y \\ \text{Subject to} & 2x + y \geq 4 \\ & x + 3y \geq 1. \end{array} \]