Efficient Evaluation of Sigma Notation: Solving for the Sum of a Series

Join the discussion
Registration is free. Start your own thread to ask a follow-up.
9 replies · 4K views
mateomy
Messages
305
Reaction score
0
The problem posed is:
Evaluate
[tex] \sum_{i=1}^{n} (2i + 2^i)[/tex]

I know that I can break the summation down to this:

[tex] 2\sum_{i=1}^{n} i\, +\, 2\sum_{i=1}^{n}1^i[/tex]

and then after using some Fundamental Theorems...

[tex] =2\Bigg(\frac{n(n+1)}{2}\Bigg) + 2^n[/tex]

I can't seem to get it to look like my answer key which is...

[tex] 2^{n+1} + n^2 + n-2[/tex]

Clearly I am doing something wrong, I know I can expand my last step but when I do, it doesn't look anything close to what the book is showing me. Particularly, where are they getting the n-2 ? Where is my step wrong? THanks in advance for any help.
 
Last edited:
Physics news on Phys.org
mateomy said:
The problem posed is:
Evaluate
[tex] \sum_{i=1}^{n} (2i + 2^i)[/tex]

I know that I can break the summation down to this:

[tex] 2\sum_{i=1}^{n} i\, +\, 2\sum_{i=1}^{n}1^i[/tex]
The first summation is correct, but not the second. 2n [itex]\neq[/itex] 2 * 1n.
mateomy said:
and then after using some Fundamental Theorems...

[tex] =2(\frac{n(n+1)}{2}) + 2^n[/tex]

I can't seem to get it to look like my answer key which is...

[tex] 2^{n+1} + n^2 + n-2[/tex]

Clearly I am doing something wrong, I know I can expand my last step but when I do, it doesn't look anything close to what the book is showing me. Particularly, where are they getting the n-2 ? Where is my step wrong? THanks in advance for any help.
 
Am I just supposed to expand it from 1 to n then? (the second summation) I can't find anything in this chapter that deals with integers to a variable power...(thanks btw)
 
Okay, so I figured out the geometric sequence part of the problem basically being [itex]2^i[/itex] which is the form of

[tex] \frac{1-2^{n+1}}{1-2}[/tex]

Is that right? I don't think that it is because I am missing a factor of 2 in there, I believe? (or not?)
 
You're off by a little bit. For the geometric series you should get
[tex]\frac{2-2^{n+1}}{1-2}[/tex]

which is the same as 2n+1 - 2.

Notice that the series starts with i = 1, not i = 0, so the first term of the geometric series is 2, not 1.
 
One more question...

Im confused as to why the numerator is [itex]2-2^{n+1}[/itex] specifically the individual 2 in the front. My initial geometric sequence (see above) is -numerator only- [itex]1-2^{n+1}[/itex], is that one just a default and you're supposed to be putting the outcome of the first term in front?
Again, sorry for the 20 questions, but the section in my book says absolutely nothing on geometric sequence with regards to summation, I had to dig that equation out of Google. THanks again, this is really really helping.
 
The geometric series part is
[tex]\sum_{i=1}^{n}2^i[/tex]

If we expand this, we get
Sn = 2 + 4 + ... + 2n
2Sn = 4 + 8 + ... + 2n + 2n + 1

so 2Sn - Sn = 2n + 1 - 2
==> Sn = 2n + 1 - 2

or,
[tex]\sum_{i=1}^{n}2^i = 2^{n + 1} - 2[/tex]