numberphobia

Level pending

What is the average of the first 99 positive integers.


The answer is 50.

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.

3 solutions

Srivardhan Srb
May 16, 2015

Sum of first "n" numbers= n(n+1)/2

average of first n numbers= ( s u m o f " n " n u m b e r s ) / n {(sum of "n" numbers)}/{n} = ( n + 1 ) / 2 (n+1)/2

Therefore, average of first 99 no's = 50

Marta Reece
May 3, 2017

99 + 1 = 100 99+1=100 , average of 99 99 and 1 1 is 100 / 2 = 50 100/2=50

98 + 2 = 100 98+2=100 , average of those two is also 100 / 2 = 50 100/2=50

Continue on until only one number is left: 50 50

Average of all those 50 50 's is, of course, 50 50 .

Brock Brown
May 17, 2015

Python 2.7:

1
print sum(range(1,100))/99.0

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...