a = 1 1 2 + 3 2 2 + 5 3 2 + … + 2 0 0 1 1 0 0 1 2 b = 3 1 2 + 5 2 2 + 7 3 2 + … + 2 0 0 3 1 0 0 1 2
Define a , b as above. What is the closest integer to ( a − b ) ?
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.
I used the same way.
Did the same way but I entered 500 :(
a = the sum from n=1 to 1001 of n^2/2n-1
b = the sum from n=1 to 1001 of n^2/2n+1
let a(n) = n^2/2n-1
and b(n) = n^2/2n+1
a(n+1) = (n+1)^2 / 2n+1
= n^2+2n+1 / 2n+1
= (n^2/2n+1) + 1
n^2/2n+1 = b(n), therefore:
a(n+1) - b(n) = 1
Therefore
(a-b) = 1^2/1 + 1000 - 1001^2/2003
(a-b) = 500.7498....
Problem Loading...
Note Loading...
Set Loading...
a − b = 1 1 2 + 3 2 2 − 1 2 + 5 3 2 − 2 2 + . . . + 2 0 0 1 1 0 0 1 2 − 1 0 0 0 2 − 2 0 0 3 1 0 0 1 2 = 1 + 1 + 1 + . . . + 1 − 2 0 0 3 1 0 0 1 2 = 1 0 0 1 − 2 0 0 3 1 0 0 1 2 = 1 0 0 1 ( 1 − 2 0 0 3 1 0 0 1 ) = 2 0 0 3 1 0 0 1 × 1 0 0 2 = 5 0 0 . 7 4 9
The closest integer of 5 0 0 . 7 4 9 is 5 0 1