when negating an inequality, you flip the strictness:
!(x >= y) <=> x < y
!(x > y) <=> x <= y
but when simply flipping around an inequality, you don't:
x > y <=> y < x
x >= y <=> y <= x
why do I have to think about these every time, or else I mix them up???