I am about to solve the recurrence
$a(n,m)=\frac{1}{2}a(n,m-1)+\frac{1}{2}a(n-1,m)$ with boundary conditions $a(0,m)=(\frac{1}{2})^m, \forall m\in\mathbb N$ and $a(n,0)=(\frac{1}{2})^n, \forall n\in\mathbb N$ where $a:\mathbb N^2 \to \mathbb R$.
My questions are
- For this specific problem, I found the solution $a(n,m)=(1/2)^{n+m}\binom{n+m}{n}$ using graphics (see my sketch here). Is there an algebraic way to solve this problem?
- For "1D" linear constant-coefficient difference equation, we know that a geometric sequence with proper base is a fundamental solution to the difference equation. Can we generalise this notion to "2D difference equations"?
- Is there a closed-form general solution to the "2D difference equation" without boundary condition?
** Side note **
I found this problem as I was analysing a simplified Swiss tournament model. $a(n,m)$ represents the portion of teams which won $n$ games and lost $m$ games after $n+m$ games.
We can get rid of the coefficients by setting
$$ b(n, m) = 2^{n+m}a(n, m) $$
for all $n, m \in \mathbb{N}$, giving us the recurrence
$$ b(n, m) = b(n, m - 1) + b(n - 1, m). $$
(Adding this factor is not just motivated by our prior knowledge of the solution, it's a standard method when solving recurrence relations in one variable.) In this form it has already been solved here, where they use generating functions in two variables. I believe they also answer some of your other questions there.