What Are Solutions for Universal Linear Recursions?

  • Context: High School 
  • Thread starter Thread starter coolul007
  • Start date Start date
  • Tags Tags
    Linear Recursion
coolul007
Gold Member
Messages
271
Reaction score
8
TL;DR
I may have reinvented the wheel, here is a pdf on my observations
on Phys.org
coolul007 said:
Summary:: I may have reinvented the wheel, here is a pdf on my observations

https://www.testsite.cocoams.org/linrec.pdf
Looks ok so far (re-opened).

You could try to prove why your closed formulas are correct, consider why there are repetitions in other number systems to a different basis, or what happens if ##a\in \mathbb{R}.##
 
Last edited:
  • Like
Likes   Reactions: pbuk and berkeman
I haven't got a clue how to prove my formulas, they are correct. My aha moment was seeing the rep digits in the different bases. As for the reals, I'm a positive integer kind of guy. I also looked to see if there was anything that may be useful for the 3N+1 conjecture. So far nothing. Thank you for your comments.
 
Recursive formulas occur everywhere. Some examples:
  • The Fibonacci series: [itex]x_{n+1}=x_{n}+x_{n-1}[/itex]
  • The Mandelbrot series: [itex]z_{n+1}=z_{n}^{2}+c[/itex] where c is a given constant
  • Factorials: n! = n⋅(n-1)!, (n integer >0, 0!=1)
  • Square roots: [itex]x_{n+1}=\frac{1}{2}(x_{n}+\frac{a}{x_{n}})[/itex] (for a>0)
Other recursives inlude the Sierpinski curves and the Hilbert curves.
 
  • Informative
Likes   Reactions: berkeman
Svein said:
Recursive formulas occur everywhere. Some examples:
  • The Fibonacci series: [itex]x_{n+1}=x_{n}+x_{n-1}[/itex]
  • The Mandelbrot series: [itex]z_{n+1}=z_{n}^{2}+c[/itex] where c is a given constant
  • Factorials: n! = n⋅(n-1)!, (n integer >0, 0!=1)
  • Square roots: [itex]x_{n+1}=\frac{1}{2}(x_{n}+\frac{a}{x_{n}})[/itex] (for a>0)
Other recursives inlude the Sierpinski curves and the Hilbert curves.
There already exists a Benet formula for the Fibonacci numbers.
 
coolul007 said:
There already exists a Benet formula for the Fibonacci numbers.
Linear, homogeneous recurrence relations (sequences which can be defined using the form ##a_n=k_1 a_{n-1} + k_2 a_{n-2} + ... k_m a_{n-m}##) can be turned into non-recursive formulae by obtaining solutions for the characteristic polynomial.

The motivation for the technique is straightforward. Suppose that a solution takes the form ##x^n## for some value x. Then the recurrence states that ##x^m=k_1 x^{m-1} + k_2 x^{m-2} + ... k_m##. This is the characteristic polynomial for the recurrence. It will normally have m solutions. Any of those solutions will have the property that ##x^n## solves the recurrence. Any linear combination of those (##a x_1^n + b x_2^n + ...##) will also solve the recurrence. You plug in initial values of the sequence to figure out which linear combination you need. You do have to worry about complex solutions. Those end up being sines and cosines.

Or one can consult Wikipedia where they describe the exact same thing and more.
 
jbriggs444 said:
Linear, homogeneous recurrence relations (sequences which can be defined using the form ##a_n=k_1 a_{n-1} + k_2 a_{n-2} + ... k_m a_{n-m}##) can be turned into non-recursive formulae by obtaining solutions for the characteristic polynomial.

The motivation for the technique is straightforward. Suppose that a solution takes the form ##x^n## for some value x. Then the recurrence states that ##x^m=k_1 x^{m-1} + k_2 x^{m-2} + ... k_m##. This is the characteristic polynomial for the recurrence. It will normally have m solutions. Any of those solutions will have the property that ##x^n## solves the recurrence. Any linear combination of those (##a x_1^n + b x_2^n + ...##) will also solve the recurrence. You plug in initial values of the sequence to figure out which linear combination you need. You do have to worry about complex solutions. Those end up being sines and cosines.

Or one can consult Wikipedia where they describe the exact same thing and more.
It seems these are solutions for a particular recursion, what I have supplied is a universal formula for all positive linear recursions.
 
coolul007 said:
It seems these are solutions for a particular recursion, what I have supplied is a universal formula for all positive linear recursions.
As I understand your terminology, your "positive linear recursion" would be what we would call an "inhomogeneous first order linear recurrence relation".

It is "inhomogeneous" because of the constant term.
It is "linear" because the contribution from prior terms is a fixed multiple of the terms. Not of their squares or anything fancier.
It is "first order" because it only goes back one term.

As I recall from many years ago (it's been about 40 years now since I studied these), the first move you make when attacking an inhomogeneous recurrence is to make it homogeneous with a change of variables. You can then solve the homogeneous recurrence and change variables back.

The same Wiki article I linked to above covers inhomogenous linear recurrence relations as well. It uses a different technique from the one that I recall.

https://en.wikipedia.org/wiki/Recur...currence_relations_with_constant_coefficients

Fibonacci is an example of a second order homogenous linear recurrence relation. It goes back two terms and has no constant term.
 
Last edited:

Similar threads

  • · Replies 11 ·
Replies
11
Views
2K
  • · Replies 19 ·
Replies
19
Views
4K
  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 12 ·
Replies
12
Views
5K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 10 ·
Replies
10
Views
3K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 3 ·
Replies
3
Views
3K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K