Summation Question: Subtracting 1, 2^(k-1) & 1/2

  • Thread starter Thread starter mohabitar
  • Start date Start date
  • Tags Tags
    Summation
AI Thread Summary
The discussion centers on the manipulation of summation bounds in relation to the term 2^(k-1) and the introduction of the term 1/2. Participants clarify that the term 1/2 corresponds to k=-1, allowing for a change in the lower bound of the summation from k=-1 to k=0. The conversation explores how adjusting the bounds affects the index, with examples illustrating that if the lower bound is changed, the corresponding term can be factored out. The validity of changing summation bounds is confirmed, emphasizing the importance of understanding the relationship between the index and the terms involved. Overall, the discussion highlights the rules governing summation bounds and their implications in mathematical expressions.
mohabitar
Messages
140
Reaction score
0
heMwm.png


So what's going on here? Since there is a 2^(k-1), I can subtract one from n and also the index? Thats what it looks like they did. Also, where did they get that 1/2 from?
 
Physics news on Phys.org
mohabitar said:
heMwm.png


So what's going on here? Since there is a 2^(k-1), I can subtract one from n and also the index? Thats what it looks like they did. Also, where did they get that 1/2 from?

The 1/2=2-1 is simply the term of the summation for which k=-1; by bringing it out of the summation, the lower bound can be changed from k=-1 to k=0
 
Oh ok..so how is it that we can change the bound? What is the rule for that or steps?
 
mohabitar said:
Oh ok..so how is it that we can change the bound? What is the rule for that or steps?

Think about it like this:

\sum\limits_{k = 0}^{n + 1} {{2^{k - 1}}} = {2^{ - 1}} + {2^0} + {2^1} + ... + {2^{n - 1}} + {2^n} = \sum\limits_{k = - 1}^n {{2^k}}

Do you see why changing the bounds is valid?
 
But the bound for the first was n+1, so shouldn't the last term be 2^(n+1) or no?
 
mohabitar said:
But the bound for the first was n+1, so shouldn't the last term be 2^(n+1) or no?

But remember, the index of 2 is now k-1. So when k=n+1, the index will be (n+1)-1=n
 
The 1/2=2-1 is simply the term of the summation for which k=-1; by bringing it out of the summation, the lower bound can be changed from k=-1 to k=0
So if my lower bound were 1, I could bring out a 2 and the new index would start from 2? And if the bound were 2, I could bring out a 4 and new bound would be 3?
 
mohabitar said:
So if my lower bound were 1, I could bring out a 2 and the new index would start from 2? And if the bound were 2, I could bring out a 4 and new bound would be 3?

Yes that's right
 
Back
Top