Calculate the Sum: $\sum_{k=1}^{10} 3 \cdot 2^{k}$

  • Thread starter Thread starter Moridin
  • Start date Start date
  • Tags Tags
    Sum
AI Thread Summary
To calculate the sum $\sum_{k=1}^{10} 3 \cdot 2^{k}$, the correct approach involves recognizing it as a geometric series. The formula for the sum of a geometric series is $\sum_{k=0}^n a r^k = a \frac{1 - r^{n+1}}{1 - r}$. In this case, the first term is 6 (when k=1), the common ratio is 2, and there are 10 terms, leading to the expression $6 \frac{1 - 2^{10}}{1 - 2}$. The discussion highlights a common confusion regarding the number of terms and the starting index of the series, clarifying that the sum starts at k=1, resulting in 10 terms. Understanding these details is crucial for correctly applying the geometric series formula.
Moridin
Messages
692
Reaction score
3

Homework Statement



Calculate the following sum:

\sum_{k=1}^{10} 3 \cdot 2^{k}

The Attempt at a Solution



\sum_{k=1}^{10} 3 \cdot 2^{k} = 3 \cdot \sum_{k=1}^{10} 2^{k} = 3 \cdot (2^{10} - 1)

Although it seems that I am missing something.
 
Physics news on Phys.org
Moridin said:
\sum_{k=1}^{10} 3 \cdot 2^{k} = 3 \cdot \sum_{k=1}^{10} 2^{k} = 3 \cdot (2^{10} - 1)

Although it seems that I am missing something.
Very close but no cigar. How can \sum_{k=1}^{10} 2^{k} = 2^{10} - 1? You are missing something from the right-hand side.
 
Right, if you divide a term in the sum by the previous term, you get 2, not 1? So a factor of 2 is missing.
 
Do you know x^n - y^n = (x-y)(x^{n-1} + x^{n-1}y + ... + y^{n-1} ) ?

For (x,y) = (2,1) that forms into what you need. Look at the expansion of what you have, 2^10 - 1, and see how that falls different to the sum you want on the RHS, then change it accordingly =]
 
**Edited by user.
 
Last edited:
Forum regulations prohibit giving out answers to homework threads - please just give hints. Edit your post.
 
ok sorry buddy!

@author of thread... look up summation of a GP
 
Moridin said:

Homework Statement



Calculate the following sum:

\sum_{k=1}^{10} 3 \cdot 2^{k}

The Attempt at a Solution



\sum_{k=1}^{10} 3 \cdot 2^{k} = 3 \cdot \sum_{k=1}^{10} 2^{k} = 3 \cdot (2^{10} - 1)

Although it seems that I am missing something.
The formula you are trying to remember is
\sum_{k=0}^n a r^k= a\frac{1-r^{n+1}}{1- r}[/itex]<br /> For r= 2, so that 1-r= 1-2= -1, that becomes<br /> \sum_{k=0}^n a 2^k= a (2^{n+1}- 1)<br /> <br /> There are <b>two</b> important differences between that and the formula you are using.
 
Let's see.

The general formula is

\sum_{k=0}^n a r^k= a\frac{1-r^{n+1}}{1- r}

Now the terms in the sum

\sum_{k=1}^{10} 3 \cdot 2^{k} = 6 + 12 + 24 + ... + 3072

This means that

n = 9 (10-1)
r = 2 (taking the n:th term/(n-1):th term)
a = 6 (the starting term)

So

\sum_{k=1}^{10} 3 \cdot 2^{k} = 6\frac{1-2^{9+1}}{1-2} = 6\frac{1-2^{10}}{1- 2} = 6(2^{10} - 1)

That sounds about right?

Why is n = 9 here? Is that just the number of terms that have an exponent >= 2?
 
  • #10
Someone above told me not to give out the answer.. and btw your answer is correct.. and yes n = 10 not 9 . There are 10 terms of the GP.
 
  • #11
spdeyunlimit, n= 9, not 10 because because the sum starts with k= 1. He is thinking of this as 6+ 6(2)+ 6(22)+ 6(2n) with n running from 0 to 9.

Another way to do the problem would be to use the same formula with n= 10, a= 3, but then subtract off 3- to allow for the missing 3(20) term.
 
  • #12
for the GP
a, ar, ar^2, ar^3 ... and so on
Sum of first n terms = a(1 - r^n) / (1-r)
where in the first term the power of r is 0.. whereas here it is one.. so yeah i got that.. it will be for n = 9
 
Back
Top