5

Clearly, one can solve a system of linear equations by adding the constituent equations together or subtracting them from one another (via the so-called "elimination" method), but can one do the same with a system of linear inequalities. In other words, is an operation of the following form valid?

   x > y
+  a > b

   Therefore, x + a > y + b.

Many thanks!

1 Answers1

3

Yes, it is valid. You can prove it's validness in two steps: First, if $a<b$ then $a+x<b+x$.
Secondly, if $x<y$ then $0<y-x$, by adding $-x$ to both sides. Hence $b+x<b+x+y-x=b+y$.
Finally, $a+x<b+y$

Dennis Gulko
  • 15,640