Proving Recurrence Relation by Induction

  • Thread starter Thread starter dragonkiller1
  • Start date Start date
  • Tags Tags
    Recurrence Relation
dragonkiller1
Messages
3
Reaction score
0
x_{xn-1}= 5_{xn-1} - 6_{xn-2};for \ n≥2 \\ x_{1}=1 \\ x_{0}=0

prove by induction that:
\begin{bmatrix}<br /> x_{n}\\ x_{n-1} <br /> \end{bmatrix} = \begin{bmatrix}<br /> 5 &amp;-6 \\ <br /> 1 &amp; 0<br /> \end{bmatrix}^{n-1}\begin{bmatrix}<br /> 1\\0 <br /> \end{bmatrix}
 
Physics news on Phys.org
welcome to pf!

hi dragonkiller1! welcome to pf! :wink:

show us what you've tried, and where you're stuck, and then we'll know how to help! :smile:
 
I've showed the base step for n=1
For the inductive step:
Suppose P(k) is true for some k
\begin{bmatrix}<br /> x_{k}\\ x_{k-1} <br /> \end{bmatrix} = \begin{bmatrix}<br /> 5 &amp;-6 \\ <br /> 1 &amp; 0<br /> \end{bmatrix}^{k-1}\begin{bmatrix}<br /> 1\\0 <br /> \end{bmatrix}
Then for n=k+1
\begin{bmatrix}<br /> x_{k+1}\\ x_{k} <br /> \end{bmatrix} = \begin{bmatrix}<br /> 5 &amp;-6 \\ <br /> 1 &amp; 0<br /> \end{bmatrix}^{k}\begin{bmatrix}<br /> 1\\0 <br /> \end{bmatrix}
?
I'm stuck on the inductive step. >.<
 
hi dragonkiller1! :smile:

you obviously need to prove

\begin{bmatrix}<br /> x_{n+1}\\ x_{n} <br /> \end{bmatrix} = \begin{bmatrix}<br /> 5 &amp;-6 \\ <br /> 1 &amp; 0<br /> \end{bmatrix}\begin{bmatrix}<br /> x_{n}\\ x_{n-1} <br /> \end{bmatrix}

which is easier …

the top line or the bottom line? :wink:
 
pre multiply 5,-6,1,0 matrix on both the sides(to the k equation) and you will have your proof
 
Oh got it. Thanks :)
 
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...
Back
Top