Consider an arithmetic progression sum 1 + 2 + 3 + ⋯ .
1 is the first term, 2 is the second term, etc.
The cumulative sum is obtained by adding all the terms up to a certain point. For example, the cumulative sum of the first 5 terms is 1 + 2 + 3 + 4 + 5 = 1 5 .
How many terms out does the cumulative sum first exceed 100?
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.
Simple standard approach.
A quick approximation for the number to get to the target number is sqrt(2*(target number)) This can be derived from the above equation if we assume n(n+1) ~ n^2.
This is an arithmetic progression where a = 1 , d = 1
Now, we want the sum of the first n terms to be over 1 0 0 , which is:
S n > 1 0 0 2 n ( 2 ( 1 ) + ( n − 1 ) ( 1 ) ) > 1 0 0 n ( 2 + n − 1 ) > 2 0 0 n 2 + n − 2 0 0 > 0
First, if you solve n 2 + n − 2 0 0 = 0 , you should get x = 2 − 1 ± 8 0 1
Therefore, for the inequality n 2 + n − 2 0 0 = 0 , we have the range:
n < 2 − 1 − 8 0 1 or n > 2 − 1 + 8 0 1
Since n can only take positive values, the range is
n > 2 − 1 + 8 0 1 n > 1 3 . 6 5
Therefore, the minimum number of terms required is 1 4
Problem Loading...
Note Loading...
Set Loading...
The cumulative sum is 2 1 * n * (n+1) for the first n terms.
For n = 13, this is 91. For n = 14, this is 105.