Proving Recurrence Relation by Induction

  • Thread starter Thread starter dragonkiller1
  • Start date Start date
  • Tags Tags
    Recurrence Relation
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
5 replies · 2K views
dragonkiller1
Messages
3
Reaction score
0
[itex]x_{xn-1}= 5_{xn-1} - 6_{xn-2};for \ n≥2 \\ x_{1}=1 \\ x_{0}=0[/itex]

prove by induction that:
[itex]\begin{bmatrix}<br /> x_{n}\\ x_{n-1} <br /> \end{bmatrix} = \begin{bmatrix}<br /> 5 &-6 \\ <br /> 1 & 0<br /> \end{bmatrix}^{n-1}\begin{bmatrix}<br /> 1\\0 <br /> \end{bmatrix}[/itex]
 
Physics news on Phys.org
I've showed the base step for n=1
For the inductive step:
Suppose P(k) is true for some k
[itex]\begin{bmatrix}<br /> x_{k}\\ x_{k-1} <br /> \end{bmatrix} = \begin{bmatrix}<br /> 5 &-6 \\ <br /> 1 & 0<br /> \end{bmatrix}^{k-1}\begin{bmatrix}<br /> 1\\0 <br /> \end{bmatrix}[/itex]
Then for n=k+1
[itex]\begin{bmatrix}<br /> x_{k+1}\\ x_{k} <br /> \end{bmatrix} = \begin{bmatrix}<br /> 5 &-6 \\ <br /> 1 & 0<br /> \end{bmatrix}^{k}\begin{bmatrix}<br /> 1\\0 <br /> \end{bmatrix}[/itex]
?
I'm stuck on the inductive step. >.<
 
hi dragonkiller1! :smile:

you obviously need to prove

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

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 :)