Mathematical Induction Problem

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
5 replies · 9K views
Phyzwizz
Messages
58
Reaction score
0
I was working on my homework and I did two of the mathematical induction problems before this one and they were super easy but I must be forgetting something because I just can't seem to solve this one.

2+7+12+17...+(5n-3) = (n/2)(5n-1)

So I know that step 1 is to prove that it works with 1, 2=(1/2)(5(1)-1) and yes 2=2
Then I know your supposed to "Assume that 2+7+12+17+...+(5n-3)=(n/2)(5n-1)".

This next part is where I get stuck...
I start off plugging in the (n+1) for n on the right side and then substituting (n/2)(5n-1) for 2+7+12+17 on the left side giving me... (n/2)(5n-1)+(5n-3)=((n+1)/2)(5(n+1)-1)
I tried multiplying everything out but that doesn't seem to get me anywhere.

Help would be greatly appreciated! Thanks.
 
on Phys.org
Compare to mine below, the part in bold
Phyzwizz said:
(n/2)(5n-1)+(5n-3)=((n+1)/2)(5(n+1)-1)
looks to be wrong.

The way I learned induction, I use another variable for part 2.

Assume true for n = k:
[tex]2 + 7 + 12 + 17 + ... + (5k-3) = \frac{k}{2}(5k-1)[/tex]

Prove true for n = k + 1:
[tex]2 + 7 + 12 + 17 + ... + (5k-3) + (5k + 2)[/tex]
[tex]= \frac{k}{2}(5k-1) + (5k + 2)[/tex]

Add by finding the common denominator, and you should get to
[tex]\frac{(k + 1)}{2}(5k+4)[/tex]
 
Okay thank you at least this points me back in the right direction. I was wondering how you got the (5k+2) on the right side.

And also I was wondering if the final part at the end of your work is the answer because it doesn't seem to end up being equal to the other side of the equation
 
Phyzwizz said:
Okay thank you at least this points me back in the right direction. I was wondering how you got the (5k+2) on the right side.
It's actually the left side, simplified. Let me re-write it and maybe it will be more clear.

Prove true for n = k + 1:
[tex]\begin{aligned}<br /> 2 + 7 + 12 + 17 + ... + (5k-3) + (5(k+1) - 3) &= \frac{(k + 1)}{2}(5(k+1) - 1) \\<br /> 2 + 7 + 12 + 17 + ... + (5k-3) + (5k + 2) &= \frac{(k + 1)}{2}(5k + 4) \\<br /> \frac{k}{2}(5k-1) + (5k + 2) &= \frac{(k + 1)}{2}(5k + 4)<br /> \end{aligned}[/tex]

Now get the LHS equal to the RHS.
 
Phyzwizz said:
Okay thank you at least this points me back in the right direction. I was wondering how you got the (5k+2) on the right side.
The general term in the sequence is 5n- 3. Replacing n by n+ 1 gives 5(n+1)- 3= 5n+ 5- 3= 5n+ 2.

And also I was wondering if the final part at the end of your work is the answer because it doesn't seem to end up being equal to the other side of the equation
The final part is
[tex]\frac{k}{2}(5k- 1)+ 5k+ 2= \frac{k(5k- 1)+ 2(5k+ 2)}{2}[/tex]
[tex]= \frac{5k^2- k+ 10k+ 4}{2}= \frac{5k^2+ 9k+ 4}{2}= \frac{(k+1)(5k+4)}{2}[/tex]
Yes, they are the same.
 
Phyzwizz said:
I was working on my homework and I did two of the mathematical induction problems before this one and they were super easy but I must be forgetting something because I just can't seem to solve this one.

2+7+12+17...+(5n-3) = (n/2)(5n-1)

So I know that step 1 is to prove that it works with 1, 2=(1/2)(5(1)-1) and yes 2=2
Then I know your supposed to "Assume that 2+7+12+17+...+(5n-3)=(n/2)(5n-1)".

This next part is where I get stuck...
I start off plugging in the (n+1) for n on the right side and then substituting (n/2)(5n-1) for 2+7+12+17 on the left side giving me... (n/2)(5n-1)+(5n-3)=((n+1)/2)(5(n+1)-1)
I tried multiplying everything out but that doesn't seem to get me anywhere.

Help would be greatly appreciated! Thanks.

You are summing (5k - 3) over k from 1 to n, and sum(5k - 3) = 5*sum(k) - 3*sum(1).

RGV