Somewhat similar to this question, but more general:
- Under what circumstances there exists a solution for recurrences with more than one variable?
Suppose that my recurrence satisfies the following syntax: $$ T(a,b) = T(t,t) + T(t,t) + c $$ with initial conditions: $$ T(0,b)=b~|~1~|~0 \\ T(a,0)=a~|~1~|~0 $$ where $$ t ::= v+v~|~v-v \\ v ::= a~|~b~|~0~|~1 \\ c ::= 1~|~2~|~3 $$ Here are a few recurrences to demonstrate what I mean: $$ (1)~~~~~T(a,b)=T(a-1,b-1)+T(a-1,b)+1 $$ $$ (2)~~~~~T(a,b)=T(b,b-1)+T(a-1,b)+1 $$ $$ (3)~~~~~T(a,b)=T(a-1,b)+T(a-1,b)+1 $$ Is there any algorithm that provides a closed form for $T$?
+1
everything shrinks to0
's ... – OrenIshShalom Jul 06 '20 at 07:49