Solving Non-Linear 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
3 replies · 8K views
Messages
436
Reaction score
13
Hello;

I do not have any experience in solving non-linear recurrence relations, so I was just wondering how one solves them.

For example, consider the sequence: 1, 2, 6, 15, 31, 56

In general, [tex]F_{n+1} = F_{n} + n^{2}[/tex]

Do I still substitute [tex]F_{n} = k^{n}[/tex]?

Thanks.
 
Mathematics news on Phys.org
Hello;

Thanks for the reply. How did you transform it into a homogeneous linear recurrence relation? Did you use trial and error, or is there a method to do this (or is there something obvious I'm missing here)? Can all non-linear recurrence relations be transformed into homogeneous linear recurrence relations?
 
FeDeX_LaTeX said:
Hello;

I do not have any experience in solving non-linear recurrence relations, so I was just wondering how one solves them.

For example, consider the sequence: 1, 2, 6, 15, 31, 56

In general, [tex]F_{n+1} = F_{n} + n^{2}[/tex]

Do I still substitute [tex]F_{n} = k^{n}[/tex]?

Thanks.

Introduce the operator R that retards sequences:

[tex]R(f_n)=f_{n-1}[/tex]

then you can express you equation as

[tex](R-1)f_n=(n-1)^2[/tex]

Multiply this by (R-1)^3 from the left, you'll get

[tex](R-1)^4f_n=0[/tex]

(check it...)

This last equation is linear and is of fourth order, the solutions depends on 4 arbitrary constants. 3 of then can be eliminated by substitution into the original equation.