Solving Linear Recurrence Relations

  • Context:
  • Thread starter Thread starter taya
  • Start date Start date
  • Tags Tags
    Linear Recurrence
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
2 replies · 2K views
taya
Messages
1
Reaction score
0
Solve each of the following linear recurrence relations:
1. t(1)=1 t(2)=4
t(n) - 5t(n-1) + 6t (n-2)= 0 for n>1

2. a(n)=4a(n-1) - 4a (n-2)
with initial conditions a(0) = 4 and a(1)=12

3. t(1)=3 t(2)=3
t(n) + 2t (n-1) + t(n-2) = 0
 
Physics news on Phys.org
taya said:
1. t(1)=1 t(2)=4
t(n) - 5t(n-1) + 6t (n-2)= 0 for n>1
Rewrite this as [math]t_{n + 2} - 5t_{n + 1} + 6 t_n = 0[/math]. What is your characteristic equation?

-Dan
 
Hello and welcome to MHB, taya! :D

For future reference, we ask that no more than 2 questions be asked in the initial post of a thread.

In case you find repeated characteristic roots, what form will your general solution take?