I have a matrix $A$ ($n \times n$) defined as follows:
$$A = \{ 0 \text{ if } i<j,\ \mathrm{Binom}(x=i, \mathrm{size}=j, \mathrm{prob})\text{ if } j \ge i\}$$
This is an upper triangular matrix, and I want to solve a system $Ax =b$ -- thus in a sense invert $A$.
I was wondering if a general inverse exists for this problem.
Any help appreciated, thanks in advance..
I suspect it is a lower triangular matrix. Anyway, append it with an identity matrix and start eliminating from bottom to top (top to bottom). See Gauss-Jordan elimination.