I'm reading Good Math by Mark Chu-Carroll and it says,
"$\le$" is compatiable with "+" and "*":
- ...
- if x $\le$ y, then for all z where 0 $\le$ z, (x * z) $\le$ (y * z).
- if x $\le$ y, then for all z where z $\le$ 0, (x * z) $\le$ (y * z).
Is that 3. true?
When
x = -2, y = -1, and z = -1
Then
(-2 * -1) $\le$ (-1 * -1) ?
No, it is not. Either there is a typo in the book, or there is a typo in your transcription.
For example, $-2 \leq 3$, and $-5 \leq 0$, but $$-5 \times -2 = 10 \not\leq -15 = -5 \times 3.$$