Difference between revisions of "TADM2E 1.1"
From Algorithm Wiki
(Recovering wiki) |
|||
(4 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
− | + | <math>a + b < \min(a,b) \Leftrightarrow a < 0 \and b < 0</math> | |
---- | ---- | ||
− | If both ''a'' and ''b'' are negative, | + | If both ''a'' and ''b'' are negative, <math>a + b < min(a, b)</math>. For example |
− | + | <math>a = -5</math> | |
− | + | <math>b = -7</math> | |
− | + | <math>a+ b = -5 + (-7) = -12</math> | |
− | + | <math>min(-5, -7) = -7</math> | |
[[introduction-TADM2E|Back to ''Introduction ...'']] | [[introduction-TADM2E|Back to ''Introduction ...'']] |
Latest revision as of 01:06, 1 August 2020
$ a + b < \min(a,b) \Leftrightarrow a < 0 \and 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 $