Find the sum up to 91 terms of the following series:
9 + 1 0 1 + 1 0 + 1 1 1 + 1 1 + 1 2 1 + …
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.
By rationalising we can get this series as
1 1 0 − 9 + 1 1 1 − 1 0 . . . . . . . . 1 1 0 + ( n − 1 ) − 9 + ( n − 1 )
We have to sum up till n = 9 1
1 0 − 9 + 1 1 − 1 0 . . . . . . . . . . + 1 0 0 − 9 9
every term will cancel out except 9 and 1 0 0
which will give us 1 0 − 3 = 7 .
But could also have been in negative,ain't it.
How can you obtain a negative value by adding only positive terms?
Python:
1 2 3 4 5 6 7 8 9 |
|
You are not advised to use computational assistance when it isn't required.
Problem Loading...
Note Loading...
Set Loading...
n = 1 ∑ 9 1 n + 8 + n + 9 1 = n = 9 ∑ 9 9 n + n + 1 1
= n = 9 ∑ 9 9 ( n + 1 + n ) ( n + 1 − n ) n + 1 − n = n = 9 ∑ 9 9 n + 1 − n n + 1 − n
= n = 9 ∑ 9 9 ( n + 1 − n ) = n = 1 0 ∑ 1 0 0 n − n = 9 ∑ 9 9 n = 1 0 0 − 9 = 1 0 − 3 = 7