I have the following recursion relation and boundary conditions:
$$f(x,y) = \frac{1}2 f(x-1,y) + \frac{1}2 f(x,y-1)$$ $$f(x,0) = x$$ $$f(0,y) = 0$$
Where $x$ and $y$ are non-negative integers. Does this have an exact solution? If not, is there an asymptotic solution for large $x$ and $y$?
We have $$ f(n + 1, k) = \frac{\displaystyle\sum_{i=0}^n(i + 2)·\binom{n - i + k}{ n - i}\cdot \frac 1{2^{n - i + k - 3}}}{16} $$
This has no closed formula (with elementary functions) as far as I know.
The derivation is lengthy, so I'll only give a rough sketch:
$$ F(x,y) = \frac{x·(x - 2)}{(x - 1)^2·(x + y - 2)} $$
In this case this is via the factorization
$$ F(x,y) = \frac{x·(x - 2)}{(x - 1)^2} ·\frac 1{x + y - 2} $$