According to Wikipedia, the binomial coefficient identity offers a good example of a multivariable recurrence relation. I believe the idea is to treat the top and bottom slots of the choose operator each as an input to an unknown function, leading to the equation $$C[n,\ k] = C[n - 1,\ k - 1] + C[n - 1,\ k]$$
where we pretend not to know in advance that $C$ is the choose operator. My goal is to try to solve this analytically by extrapolating from the patterns relating discrete and continuous equations in the single variable case.
First, I shifted some things to get $C[n + 1,\ k + 1] - C[n,\ k + 1] - C[n,\ k] = 0$, and considered the most similar partial differential equation, $c_{_{NK}} - c_{_K} - c = 0$, where $c$, $N$, and $K$ are the continuous versions of $C$, $n$, and $k$, respectively. This was based on the observation that incrementing inputs and taking derivatives have the same effect on the characteristic equation in linear, single variable equations.
Next, I tried to solve the partial differential equation using separation of variables. This led to $c = (Ae^{\frac{1}{\lambda} N})(Be^{\lambda K + K})$, where $A$ and $B$ are the arbitrary constants from each separated ODE.
Finally, I want to get rid of the exponential nature of the solution and write the solution to the discrete equation. The most natural thing for me to write based on the single variable pattern is $$C = a(\frac{1}{\Lambda})^n b(\Lambda + 1)^k$$
I just yeeted the $e$ from each factor and pulled the coefficients of the independent variables down (and switched the case of each letter again for clarity of notation). I'm not sure if $a$ and $b$ can be lumped, since they may have been affected by two different discretizations.
Actually, I'm not sure if any of this is valid. Is this process or something similar a valid way to solve multivariable recurrence relations? If not, why is there a nice relationship between analytically solving discrete and continuous equations in the single variable case but not in the multivariable case?