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
Click For Summary

Homework Help Overview

The discussion revolves around proving a statement by mathematical induction related to the summation of a series involving powers of two. The specific statement is \(\sum_{j=1}^{n+1} j \cdot 2^j = n \cdot 2^{n+2}+2\) for non-negative integers \(n\). Participants are exploring the induction process and the formulation of the induction hypothesis.

Discussion Character

  • Exploratory, Conceptual clarification, Mathematical reasoning, Problem interpretation

Approaches and Questions Raised

  • Participants discuss the base case \(P(0)\) and the formulation of \(P(k)\) and \(P(k+1)\). There are questions about the correct expressions for these statements and the implications of the induction step. Some participants express confusion over the requirement to copy the original problem exactly and the implications of shifting indices in the summation.

Discussion Status

The discussion is active, with participants attempting to clarify their understanding of the induction process. Some have offered guidance on how to define \(P(k)\) and \(P(k+1)\), while others are questioning the correctness of their formulations. There is a recognition of mistakes made in earlier posts, but no explicit consensus has been reached on the final approach.

Contextual Notes

Participants are working under the constraints of proving the statement for all non-negative integers, and there is an emphasis on accurately defining the induction hypothesis. Some express frustration over miscommunication and the challenges of maintaining focus after extended periods of study.

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:
Physics news 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??
 
What part of "copy it exactly" don't you understand?
 
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, after you wrote down P(k) and P(k+1), were you able to show P(k) implies P(k+1)?
 
  • Like
Likes   Reactions: 1 person
  • #10
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]

??
 
  • #11
I don't think you need the ??'s at the end. I think you know it is correct.
 

Similar threads

Replies
1
Views
2K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K
Replies
2
Views
1K
Replies
5
Views
2K
Replies
5
Views
3K
  • · Replies 14 ·
Replies
14
Views
2K
  • · Replies 2 ·
Replies
2
Views
1K
  • · Replies 7 ·
Replies
7
Views
3K