Okay, so I kind of remember how to solve these problems… However, I forgot the quick method.
For positive integers a and b let a ~ b be define by a~b = a + (a-1) + (a-2) + … +b. For example, 9~4 = 9+8+7+6+5+4=39
What is the value of (100~5) -(98-3)
@MITer94
Exactly - this is the most common approach to this type of questions, like
Find the difference between sums of all even numbers and all odd numbers in the range of 1 to 100 (inclusive):
(100-99) + (98-97) + … + (2-1) = 1×50 = 50.
Another way to express the @bjkmom 's short cutting solution:
(100~5) - (98~3) = (100~99) + (98~5) - ((98~5) + (4~3)) =
199 - 7 = 192. Same difference :D.