Difference between revisions of "TADM2E 1.1"

From Algorithm Wiki
Jump to: navigation, search
(Undo revision 793 by EthanGamer (talk))
(Undo revision 1056 by FuckMatt (talk))
 
(One intermediate revision by one other user not shown)
(No difference)

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 $


Back to Introduction ...