Characteristic equation solution to recurrence problem
Hi!
So, I remember once being able to do this.. I'll start with a demo, we want to find a recurrence relationship for the formula

Which is the Fib. seq. if we say :

So, what I remember is (and this seems right from googling) replace the time series with a power series (
->
) and solve to find roots, I suppose this is a poor man's z-transform; although if someone can explain this in more details that'd be lovely...
So...

With the golden ratio, for a root ->

So then (I'm getting hazy here)
We bang these two roots into a formula for the recurrence
![x_n = A[\frac{\sqrt{5} + 1}{2}]^n + B[\frac{\sqrt{5} - 1}{2}]^n](http://latex.codecogs.com/png.latex?x_n = A[\frac{\sqrt{5} + 1}{2}]^n + B[\frac{\sqrt{5} - 1}{2}]^n )
Why? Where did that come from.. i forget.
Then solve by subbing the Fib initial conds...

etc.
This is left as an exercise to the reader (not really)
Ok. So my question is, I want to work out payments on a mortgage, I thought easy, I remember how to do recurrence relations. Wrong. There is a page that shows you how to do this for payment after interest is accrued, but not before... I'm so dumb I can't even retask that solution for myself....
So:
(\frac{r}{12} + 1))
Defining P{t} as the amount I owe at the beginning of the month t
M as the amount I pay
r as the interest per year so r/12 per month
I pay my payment at the beginning of the month and interest accrues over the month.
Can you try and show me how to tackle this in the the same way as the Fib series? I know it's order 1 not 2... I just don't know how to get it right.
Recurrence relation with 2 parameters
so far i have seen all the recurrence relations(RR) similar to
F(n)= F(n-1)+F(n-2) .....the Fibonacci sequence
and they can be nonhomogeneous or of higher order.
but is there any method to solve equations like this
S(m,n)= S(m-1,n-1)+S(m,n-2)
i arrived at a RR similar to above when solving a 2 dimensional problem.
(Doh) observe that S(m,n) need not be the same as S(n,m).