Given the following function:
$$ P_N = \sum_{n=1}^N (A_n + \sum_{m=0}^{n-1} P_mB_{nm}) $$
Where: $$ A_{n} = (1-\alpha)^{n+1} $$ $$ B_{nm} = (1-\beta)^{n-m} $$
And $ N \in \aleph$
Given a known $ P_0 $ I want to remove the recursion created by $\sum_{m=0}^n P_mB_{nm}$ of the function $ P_N $.
For a similar single sum function, I was able to reduce the recursion to something like:
$$ \prod_{n=1}^{N-1} 1 + B_n $$
But the double sum made it much more difficult.
Please help.
Thank you.