
David W. answered 03/19/18
Tutor
4.7
(90)
Experienced Prof
You could add the integers (by hand, using a calculator or computer) or you could use Gauss' famous formula for the sum of the numbers from 1 to n:
Sum(from 1 to n) = n*(n+1)/2
Note (example): 1 + 2 + 3 + 4 = S
+ 4 + 3 + 2 + 1 = S
-----------------------------
5 + 5 + 5 + 5 + 2S
Four Fives make twice the desired sum.
"sum of integers from 16 to 37" means
"sum of the integers from 1 to 37" minus "sum of the integers from 1 to 15"
Sum = 37*38/2 - 15*16/2
Sum = 703 - 120
Sum = 583