Solution:NYC493 wrote: ↑Mon Mar 05, 2012 2:22 pmCan someone tell me a quick way to decode a problem like this? If you start to solve each number in the sequence manually, you can see that it's alternating from positive to negative. But, how do you arrive at an approximate sum quickly?
"For every integer k from 1 to 10, inclusive, the kth term of a certain sequence is given by (-1)^(k+1) x (1/2^k). If "T" is the sum of the first 10 terms in the sequence, then T is:
A. greater than 2
B. between 1 and 2
C. between 1/2 and 1
D. between 1/4 and 1/2
E. less than 1/2
We are given that for every integer k from 1 to 10, inclusive, the kth term of a certain sequence is given by (-1)^(k+1) x (1/2^k). We must determine the sum of the first 10 terms in the sequence. Before calculating the sum, we should recognize that the answer choices are provided as ranges of values, rather than as exact values. Thus, we might not need to calculate the total of the 10 terms to determine an answer. Perhaps we can uncover a pattern to help us find the answer. Let’s start by listing the first four terms.
k = 1:
(-1)^(1+1) x (1/2^1)
(-1)^2 x 1/2
1 x 1/2 = 1/2
k = 2:
(-1)^(2+1) x (1/2^2)
(-1)^3 x 1/4
-1 x 1/4 = -1/4
k = 3:
(-1)^(3+1) x (1/2^3)
(-1)^4 x 1/8
1 x 1/8 = 1/8
k = 4:
(-1)^(4+1) x (1/2^4)
(-1)^5 x 1/16
-1 x 1/16 = -1/16
Recall that we are trying to estimate the value of T = 1/2 + (-1/4) + 1/8 + (-1/16) + … until we have 10 terms. In other words, T = 1/2 – 1/4 + 1/8 – 1/16 + … until there are 10 terms.
We should notice that the absolute values of the terms are getting smaller:
|1/2|>|-1/4|>|1/8|>|-1/16|.
Notice that starting from the first term of 1/2, we are subtracting something less than 1/2 (notice that 1/4 < 1/2) but then adding back something even less (notice 1/8 < 1/4), and the process continues. Thus, because ½ and -1/4 are the largest term and the smallest term, respectively, in our set, the sum will never fall below ¼ or exceed ½.
Thus, we conclude that T is greater than 1/4 but less than 1/2.
Answer: D















