Difference between revisions of "TADM2E 1.1"

From Algorithm Wiki
Jump to: navigation, search
(Recovering wiki)
(No difference)

Revision as of 18:14, 11 September 2014

<math>a + b < \min(a,b) \Leftrightarrow a < 0 \and b < 0</math>


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>


Back to Introduction ...