Find the sum of all numbers starting between 19 and 79 both included. i.e Determine S where S = 19 + 20 + 21 + 22 + 23 + 24 + 25.........79.
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Sum to n terms of a series is given by s = n * (n + 1)/2 So the sum of all numbers between 19 and 79 both inclusive can be written as (Sum of all numbers from 1 to 79) - (Sum of all numbers from 1 to 18)
S = 79* 80/2 -18 * 19/2 S = 2989