Solution of the recurrence relation

  • Context:
  • Thread starter Thread starter mathmari
  • 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
2 replies · 2K views
mathmari
Gold Member
MHB
Messages
4,984
Reaction score
7
Hey! :o

How can we solve the following recurrence relation?

$$f_n=\left (\frac{2}{a^2}+b\right )f_{n-1}-\frac{1}{a^4}f_{n-2} \\ f_0=1, f_{-1}=0$$

I calculated some values to see if there is a general pattern, but it doesn't seems so...

$$f_1=\left (\frac{2}{a^2}+b\right ) \\ f_2 =\left (\frac{2}{a^2}+b\right )^2-\frac{1}{a^4} \\ f_3 =\left (\frac{2}{a^2}+b\right )^3-\frac{2}{a^4}\left (\frac{2}{a^2}+b\right ) \\ f_4=\left (\frac{2}{a^2}+b\right )^4-\frac{3}{a^4}\left (\frac{2}{a^2}+b\right ) ^2+\frac{1}{a^8} \\ f_5=\left (\frac{2}{a^2}+b\right )^5-\frac{4}{a^4}\left (\frac{2}{a^2}+b\right ) ^3+\frac{3}{a^8}\left (\frac{2}{a^2}+b\right )$$

Have calculated these values right?

Is there an other way to find the solution of the recurrence relation? (Wondering)
 
Physics news on Phys.org
mathmari said:
Hey! :o

How can we solve the following recurrence relation?

$$f_n=\left (\frac{2}{a^2}+b\right )f_{n-1}-\frac{1}{a^4}f_{n-2} \\ f_0=1, f_{-1}=0$$

I calculated some values to see if there is a general pattern, but it doesn't seems so...

$$f_1=\left (\frac{2}{a^2}+b\right ) \\ f_2 =\left (\frac{2}{a^2}+b\right )^2-\frac{1}{a^4} \\ f_3 =\left (\frac{2}{a^2}+b\right )^3-\frac{2}{a^4}\left (\frac{2}{a^2}+b\right ) \\ f_4=\left (\frac{2}{a^2}+b\right )^4-\frac{3}{a^4}\left (\frac{2}{a^2}+b\right ) ^2+\frac{1}{a^8} \\ f_5=\left (\frac{2}{a^2}+b\right )^5-\frac{4}{a^4}\left (\frac{2}{a^2}+b\right ) ^3+\frac{3}{a^8}\left (\frac{2}{a^2}+b\right )$$

Have calculated these values right?

Is there an other way to find the solution of the recurrence relation? (Wondering)
Start with:
[math]f_n = c f_{n-1} + d f_{n-2}[/math]

[math]f_{n + 2} - c f_{n + 1} - d f_n = 0[/math]

The characteristic equation is [math]m^2 - cm - d = 0[/math]

Can you take it from here?

-Dan
 
I did it! Thanks for the hint! (flower)