Some of these problems are driving me nuts. I am missing something for sure. Any help would be much appreciated. Thanks!
For this one, I obvious can do it the long way, but it is not feasible at test time. What is the best method to solve this problem?
For every integer k from 10 to 10 inclusive, the kth term is given by ((-1)^(k+1))*(1/(2^k)). What is the sum of the first 10 terms?
Answer: between 1/4 and 1/2
I get:
k=1, term = 1/2
k=2, term = -1/4
k=3, term = 1/16
k=4, term = -1/32
etc.
Summing these numbers for K=1 through 10 is for sure not the best way to solve this problem. What is?
For this one, I obvious can do it the long way, but it is not feasible at test time. What is the best method to solve this problem?
For every integer k from 10 to 10 inclusive, the kth term is given by ((-1)^(k+1))*(1/(2^k)). What is the sum of the first 10 terms?
Answer: between 1/4 and 1/2
I get:
k=1, term = 1/2
k=2, term = -1/4
k=3, term = 1/16
k=4, term = -1/32
etc.
Summing these numbers for K=1 through 10 is for sure not the best way to solve this problem. What is?
-Rachel












