1.1
Revision as of 20:35, 23 August 2020 by Algowikiadmin (talk | contribs) (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'' =...")
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 = -7 a + b = -5 + (-7) = -12 min(-5, -7) = -7
Back to Chapter 1