Constantinos
- 80
- 1
Hey!
I was trying to find the expected time an algorithm takes to solve a certain problem, and I ended up in a very nasty recurrence relation of this form:
a_{k,k} = \overline{c}a_{k,k-1}+\overline{c}a_{k-1,k}+c^{2}a_{k-1,k-1}-\overline{c}^{3}a_{k-1,k-2}-\overline{c}^{3}a_{k-2,k-1}+(\overline{c}-c)\overline{c}^{2}a_{k-2,k-2}+y((k,k))
with initial conditions:
a_{n,0} = n \forall n
and
a_{0,n} = n \forall n
and a,y:NXN→ℝ
I have no idea where to even begin! I've never encountered such a thing before, and it is actually a simpler version of a relation involving the full history of the recurrence relation(i.e all of the terms a_{k1,k2} : k1≤k, k2≤ k )
What methods do I have to study to solve that?
I was trying to find the expected time an algorithm takes to solve a certain problem, and I ended up in a very nasty recurrence relation of this form:
a_{k,k} = \overline{c}a_{k,k-1}+\overline{c}a_{k-1,k}+c^{2}a_{k-1,k-1}-\overline{c}^{3}a_{k-1,k-2}-\overline{c}^{3}a_{k-2,k-1}+(\overline{c}-c)\overline{c}^{2}a_{k-2,k-2}+y((k,k))
with initial conditions:
a_{n,0} = n \forall n
and
a_{0,n} = n \forall n
and a,y:NXN→ℝ
I have no idea where to even begin! I've never encountered such a thing before, and it is actually a simpler version of a relation involving the full history of the recurrence relation(i.e all of the terms a_{k1,k2} : k1≤k, k2≤ k )
What methods do I have to study to solve that?