Find the sum of the first 9 9 9 odd numbers.
Bonus : Can you generalize for the first n odd numbers?
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.
The sum of the first n odd numbers is
S ( n ) = k = 1 ∑ n 2 k − 1
To find a closed form
S ( n ) = k = 1 ∑ n 2 k − 1 = k = 1 ∑ n 2 k − k = 1 ∑ n 1 = 2 k = 1 ∑ n k − k = 1 ∑ n 1 = 2 ⋅ 2 n ( n + 1 ) − n = n ( n + 1 ) − n = n 2
In this case n = 9 9 9
S ( 9 9 9 ) = 9 9 9 2 = 9 9 8 0 0 1
The n th odd or even number is equal to 2 n − 1 , or 2 n .
So, 999th odd is 2 × 999 - 1 = 1997.
The mean of 1 and 1997 is 999, so the answer is equal to 9 9 9 + 1 9 9 8 × 4 9 9 .
9 9 9 + 2 × 9 9 9 × 4 9 9 = 9 9 9 × ( 1 + 2 × 4 9 9 ) = 9 9 9 × ( 1 + 9 9 8 ) = 9 9 9 × 9 9 9 = 9 9 9 2 = ( 1 0 0 0 − 1 ) 2 = 1 0 0 0 2 − 2 × 1 0 0 0 × 1 + 1 2 = 1 0 0 0 0 0 0 − 2 0 0 0 + 1 = 9 9 8 0 0 1
FORMULA --> square of n=998001
Problem Loading...
Note Loading...
Set Loading...
First lets generalize this for n using the following formula:
S n = 2 n [ 2 a + ( n − 1 ) d ]
In the arithmetic sum: 1 + 3 + 5 + 7 + ... + n; a = 1, d = 2, n =n (because we are generalizing this for n)
S n = 2 n [ 2 + ( n − 1 ) 2 ] = S n = 2 n [ 2 + 2 n − 2 ] = S n = 2 1 n × 2 n = S n = 2 2 n 2 = n 2
Since we have generalized it for n, we can now simply insert the data that we have into this equation
∴ 9 9 9 2 = 9 9 8 0 0 1