Proving the Induction Step: \sum_{j=1}^{k+2} j \cdot 2^j = (k+2)\cdot 2^{k+4}+2

  • Thread starter Thread starter jonroberts74
  • Start date Start date
  • Tags Tags
    Induction Sum
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
10 replies · 3K views
jonroberts74
Messages
189
Reaction score
0

Homework Statement



prove by induction [tex]\sum_{j=1}^{n+1} j \cdot 2^j = n \cdot 2^{n+2}+2; n \ge 0[/tex]2. The attempt at a solution

P(0)

[tex]\sum_{j=1}^{0+1} j \cdot 2^j = 0 \cdot 2^{0+2}+2[/tex]

[tex]2+2[/tex]

here is where I need some help

is P(k)

[tex]\sum_{j=1}^{k+1} j \cdot 2^j = (k+1) \cdot 2^{k+3}+2[/tex] ??

then

P(k+1) [tex]\sum_{j=1}^{k+2} j \cdot 2^j = (k+2)\cdot 2^{k+4}+2[/tex]
 
Last edited:
on Phys.org
jonroberts74 said:

Homework Statement



prove by induction [tex]\sum_{j=1}^{n+1} j \cdot 2^j = n \cdot 2^{n+2}+2; n \ge 0[/tex]





2. The attempt at a solution

P(0)

[tex]\sum_{j=1}^{0+1} j \cdot 2^j = 0 \cdot 2^{0+2}+2[/tex]

[tex]2+2[/tex]

here is where I need some help

is P(k)

[tex]\sum_{j=1}^{k+1} j \cdot 2^j = (k+1) \cdot 2^{k+3}+2[/tex] ??

No. Copy your original problem (the first equation above) exactly with ##n = k##.
 
LCKurtz said:
No. Copy your original problem (the first equation above) exactly with ##n = k##.

[tex]\sum_{j=1}^{k} j \cdot 2^j = (k) \cdot 2^{k+2}+2[/tex] why this when the sum goes to n+1??
 
I see what I did wrong in my reply. it was a simple mistake, hostility doesn't help. I'll figure it out. thanks
 
You want to prove that for all non-negative integers n, we have ##\sum_{j=1}^{n+1} j \cdot 2^j = n \cdot 2^{n+2}+2##. For each non-negative integer n, let P(n) be the statement ##\sum_{j=1}^{n+1} j \cdot 2^j = n \cdot 2^{n+2}+2##. Let the scope of the ##\forall## symbol ("for all") be the set of non-negative integers. The result that you want to prove can now be stated as
$$\forall n~P(n)$$ To prove this is to prove all of the infinitely many statements P(0), P(1), P(2),... The idea behind induction proofs is that you can do that in a finite number of steps. All you have to do is to prove the following two statements:
\begin{align}
&P(0)\\
&\forall k~\big(P(k)\Rightarrow P(k+1)\big)
\end{align} When you get to the second step, you don't really have to think about what P(k) or P(k+1) is. You just use the definition. It's appropriate to think of P as a kind of "function" that takes integers to statements.

I would recommend that you always write down a definition of P(k) for all the relevant k when you start an induction proof. You know that your definition is OK if it turns the statement that you want to prove into ##\forall n~P(n)##. The theorem has to be a statement of this form, if induction is to be used.
 
Last edited:
LCKurtz said:
What part of "copy it exactly" don't you understand?

jonroberts74 said:
I see what I did wrong in my reply. it was a simple mistake, hostility doesn't help. I'll figure it out. thanks

It isn't hostility. It is my expressing frustration with with your carelessness in executing an extremely simple task.
 
It wasn't carelessness. I've been working on my schoolwork for 16 hours a days for the past month. It was a simple mistake. I appreciate the help.
 
so p(k) is

[tex]\sum_{j=1}^{k+1} = k \cdot 2^{k+2} +2[/tex]

so p(k+1)

is

[tex]\sum_{j=1}^{k+2} = (k+1) \cdot 2^{k+3}+2[/tex]

shifting the index

[tex]\displaystyle{\sum_{j=1}^{k+2}}j 2^j=\displaystyle{\sum_{j=1}^{k+1}}j 2^j+(k+2) \cdot 2^{k+2}[/tex]

correct?

now

[tex]\displaystyle{\sum_{j=1}^{k+1}}j 2^j+(k+2)2^{k+2}=(k \cdot 2^{k+2}+2) + (k+2)2^{k+2}[/tex]

[tex]= k \cdot 2^{k+2}+k \cdot 2^{k+2} + 2 \cdot 2^{k+2} + 2[/tex]

[tex]=2\cdot k \cdot 2^{k+2} + 2 \cdot 2^{k+2} + 2[/tex]

[tex]= (2k+2)2^{k+2}+2[/tex]

[tex]= (k+1)2^{k+3} + 2[/tex]

??