4

I'm trying to prove this using induction $1*3+2*3^2+3*3^3 + \cdots + n*3^n = \dfrac{3}{4}(3^n(2n-1)+1)$

So far I have:

  1. Base case: true
  2. Induction step: $\dfrac{3}{4}(3^n(2n-1)+1)+(n+1)*3^{n+1}=\dfrac{3}{4}(3^{n+1}(2(n+1)-1)+1)$

here is where I get stuck on simplification of both left and right side so that they are equal $\dfrac{3}{4}(3^n(2n-1)+1)+3^{n+1}+3^{n+1}n=\dfrac{3}{4}(3^{n+1}(2(n+1)-1)+1)$

Thanks for your help!

Bernard
  • 175,478
krneki
  • 97

2 Answers2

2

Notice that $$3^{n+1}(n+1) = 3 \cdot 3^n (n+1) = \frac{3}{4} \cdot 3^n \cdot 4(n+1)$$ Because of the 3/4, you can move this term into the parentheses and combine it with the $3^n(2n-1)+1$ part. And because of the $3^n$, you can move the $4(n+1)$ into the parentheses and combine with the $2n-1$ part, to get

$$ \frac{3}{4} \left( 3^n (2n-1) + 1 \right) + 3^{n+1}(n+1) = \frac{3}{4} \left( 3^n \left(6n+3 \right) + 1 \right) $$

Notice that $6n+3 = 3(2n+1)$, so in the parentheses you get $3^{n+1}(2n+1)+1$.

Nick
  • 5,618
0

In the induction step you want to prove the increment from $n$ to $n+1$ on both sides are the same, namely,

$$(n+1)3^{n+1} = \dfrac{3}{4}(3^{n+1}(2n+1)-3^n(2n-1))\tag1$$

By looking at the increment you got rid of the annoying constant $1$ from the RHS. Then you notice immediately that you can divide $3^{n+1}$ from both sides, and $(1)$ becomes

$$n+1 = \dfrac{1}{4}(3(2n+1)-(2n-1))=\frac 14 (6n+3-2n+1)=\frac 14 (4n+4)=n+1$$

then you are done.

J. W. Tanner
  • 60,406
Neat Math
  • 4,790