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.
Relevant wiki: Sum of n, n², or n³
Pairing numbers is a common approach to this problem. Instead of writing all the numbers in a single column, let’s wrap the numbers around, like this: 1 2 3 4 5 10 9 8 7 6 An interesting pattern emerges: the sum of each column is 11. As the top row increases, the bottom row decreases, so the sum stays the same.
Because 1 is paired with 10 (our n), we can say that each column has (n+1). And how many pairs do we have? Well, we have 2 equal rows, we must have n/2 pairs. Number of pairs * Sum of each pair = (n/2)(n+1) = n(n+1)/2 which is the formula.
Relevant wiki: Arithmetic Progression Sum
S = 1 + 2 + 3 + ⋯ + 1 0 0 Given series is an arithmetic progression where, a = 1 , d = 1 , n = 1 0 0 , l = 1 0 0 . S = 2 n ( a + l ) = 2 1 0 0 ( 1 0 0 + 1 ) = 5 0 × 1 0 1 = 5 0 5 0
2 1 0 0 2 ∗ 1 0 0 = 5 0 5 0
Problem Loading...
Note Loading...
Set Loading...
Let's prove the general form of this:
Let us have the sum of the first n positive integers, i.e. S n = 1 + 2 + 3 + ⋯ + n .
Now clearly 2 S n = ( 1 + n ) + ( 2 + n − 1 ) + ( 3 + n − 2 ) + ⋯ + ( n + 1 ) = n ( n + 1 ) ⟹ S n = 2 n ( n + 1 ) . □
Substituting n = 1 0 0 gives 1 + 2 + 3 + ⋯ + 1 0 0 = 2 1 0 0 ⋅ 1 0 1 = 5 0 ⋅ 1 0 1 = 5 0 5 0 , which is the answer.