Difference between revisions of "1.1"
Jump to navigation
Jump to search
(Created page with "''a'' + ''b'' < min(''a,b'') <-> ''a'' < 0 /\ ''b'' < 0 ---- If both ''a'' and ''b'' are negative, ''a'' + ''b''< min(''a, b''). For example ''a'' = -5 ''b'' =...") |
|||
Line 1: | Line 1: | ||
''a'' + ''b'' < min(''a,b'') <-> ''a'' < 0 /\ ''b'' < 0 | ''a'' + ''b'' < min(''a,b'') <-> ''a'' < 0 /\ ''b'' < 0 | ||
+ | |||
+ | (find way to fix math symbols) | ||
---- | ---- |
Revision as of 16:15, 24 August 2020
a + b < min(a,b) <-> a < 0 /\ b < 0
(find way to fix math symbols)
If both a and b are negative, a + b< min(a, b). For example
a = -5 b = -7 a + b = -5 + (-7) = -12 min(-5, -7) = -7
Back to Chapter 1