Prove that $\sum\limits_{k=0}^n\ 2\times3^{k-1} = 3^n-1$

111 Views Asked by At

Hope someone can enlighten me on how to show via induction that $\sum\limits_{k=0}^n\ 2\times3^{k-1} = 3^n-1$

5

There are 5 best solutions below

2
On BEST ANSWER

$$\sum_{k = 0}^{n+1} 2 \times 3^{k-1} = \sum_{k = 0}^n 2 \times 3^{k-1} + 2 \times 3^n\\ = 3^n-1+ 2 \times 3^{n} = 3^{n+1}-1$$

2
On

$$\sum_{k=1}^n 2\times3^{k-1} = \sum\limits_{k=1}^n (3-1)3^{k-1}= \sum\limits_{k=1}^n (3^k-3^{k-1}) = 3^n-1$$ by telescoping sum.

0
On

For the inductive step, assume $\sum\limits_{k=0}^n\ 2*3^{k-1} = 3^n-1$. You now want to somehow express this assumption in the $(n+1)th$ case. Notice that

$$\begin{array}{ccl} \sum\limits_{k=0}^{n+1}2*3^{k-1}&=&\sum\limits_{k=0}^n2*3^{k-1}+2*3^n\\ &=&3^n-1+2*3^n\\ &=&3^{n+1}-1 \end{array}$$

(The assumption is used in the second step.)

Therefore, the $nth$ case implies the $(n+1)th$ case.

0
On

So, let's make this semi-rigorous. I assume that you already know the fundamental principles of mathematical induction so I won't go into great detail. Also, I assume that the sum starts at k=1, otherwise the statement isn't true ($\frac{2}{3}\neq0)$. We're going to divide this inductive proof into two steps

Step 1: Show that the statement is true when n=1

Step 2: Show that if the statement is true for the nth case it is also true for the n+1:th case

When those two steps are completed, we have shown that the statement is true for all k ($k\in\mathbb{N}$ and k>0)

Step 1: Well, this step is just as crucial as easy. Without it we won't tip any dominoes.$$\sum_{k=1}^{1}2\cdot3^{1-1}=2=3^1-1$$

Step 2: Now we replace n with n+1 and see what that will lead to $$\sum_{k=1}^{n+1}2\cdot3^{k-1}=\sum_{k=1}^{n}2\cdot3^{k-1}+2\cdot3^{n}$$if we use our induction assumption (that $\sum_{k=1}^{n}2\cdot3^{k-1}=3^n-1$) we get $$\sum_{k=1}^{n}2\cdot3^{k-1}+2\cdot3^{n}=3^n-1+2\cdot3^n=3\cdot3^n-1=3^{n+1}-1$$ We have shown that $$\sum_{k=1}^{n+1}2\cdot3^{k-1}=3^{n+1}-1$$ using the induction assumption. Thus we have shown that the nth case implies the n+1:th case and we have proven the statement using the principles of mathematical induction. Q.E.D.

0
On

This is not true.

The sum starts with $2*3^{-1}$, so it includes a term $2/3$ for $k=0$, so the left side is not an integer and the right side is an integer.

I'm doing this as an answer because I am annoyed at the number of "proofs" of something that is false.