2

I started to solve a task and I did it. Tasks says:Find the currence formula of the range with these terms:$1,2,4,8 \dots$ I found it: $$X_1=1,X_{n+1}=1+X_1+X_2+\dots+X_n, n\ge1.$$

Now I'm trying to prove with mathematical induction that the general term of the range is $X_n=2^n$.

Can anyone tell me how to prove it?

Thank!

Peter Phipps
  • 3,065
Student
  • 777

1 Answers1

2

As Daniel Fischer commented, the recurrence as you wrote it can be simplified to $X_{n+1} = 2X_n$. Your expression for $X_n$ must account for the fact that your started your series from $n = 1$. Hence, it should be $X_n = 2^{n-1}$.

Proof by induction involves two steps. First, prove the base case, which in your question is $n = 1$. Second, prove that the expression holds for $x=n+1$ under the assumption that it holds for $x = n$. This is called the inductive step.

  1. $n = 1 \Rightarrow X_1 = 2^{1-1} = 1$, which proves the base case.
  2. Assume that $X_n = 2^{n-1}$. Now $X_{n+1} = 2X_{n} = 2 \cdot 2^{n - 1} = 2^{n-1+1} = 2^n$, which completes the proof.
Daniel R
  • 3,199