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.