MHB Proving the Recursion Formula for $(x_n)$ Using Strong Induction

  • Thread starter Thread starter KOO
  • Start date Start date
  • Tags Tags
    Induction
AI Thread Summary
The discussion focuses on proving the recursion formula for the sequence $(x_n)$ defined by $x_1 = 3$, $x_2 = 7$, and $x_{n+1} = 5x_n - 6x_{n-1}$. The goal is to demonstrate that $x_n = 2^n + 3^{n-1}$ for all natural numbers $n$. Initial checks for $n = 1$ and $n = 2$ confirm the formula holds true. The proof proceeds by assuming the formula is valid for $k$ and then calculating $x_{k+1}$ using the recursion relation. The discussion also notes that while induction is required, there may be simpler methods to derive the closed form.
KOO
Messages
19
Reaction score
0
Let $(x_n)$ be a sequence given by the following recursion formula:

$$x_1 = 3, x_2 = 7,\text{ and }x_{n+1} = 5x_n - 6x_{n-1}$$

Prove that for all $n\in\Bbb N$, $x_n = 2^n + 3^{n-1}$.

Attempt:

For $n = 1$, we have $2^1 + 3^0 = 3 = x_1$ TRUE
For $n = 2$, we have $2^2 + 3^1 = 7 = x_2$ TRUE

Assume $x_k = 2^k + 3^{k-1}$ for some $k\in\Bbb N$.

Now, for $n = k+1$:

$$\begin{align*}
x_{k+1} &= 5x_k - 6x_{k-1}\\
&= 5\left(2^k + 3^{k-1}\right) - 6\left(2^{k-1} + 3^{k-2}\right)
\end{align*}$$

What Next?
 
Physics news on Phys.org
Are you required to use induction, or did you choose to do so, because there is a much simpler way to derive the closed form for the recursion.
 
MarkFL said:
Are you required to use induction, or did you choose to do so, because there is a much simpler way to derive the closed form for the recursion.

We are required to use induction.
 
Okay as your next step, I would distribute on the right side, keeping in mind that $6=2\cdot3$.
 
I was reading documentation about the soundness and completeness of logic formal systems. Consider the following $$\vdash_S \phi$$ where ##S## is the proof-system making part the formal system and ##\phi## is a wff (well formed formula) of the formal language. Note the blank on left of the turnstile symbol ##\vdash_S##, as far as I can tell it actually represents the empty set. So what does it mean ? I guess it actually means ##\phi## is a theorem of the formal system, i.e. there is a...
Back
Top