I have an interesting problem and i don't have any idea about how to solve it :-)
I'm given a system of $K$ equations (with $N \gt K$ , and $0 \lt f \lt 1$)
$$f(1-f)^{K-1} - (1-f)^{N-K} \alpha_K = 0$$ $$f(1-f)^{K-2} - (1-f)^{N-K} \alpha_{K-1} (1 - f - \alpha_K) = 0$$ $$\ldots$$ $$f - (1-f)^{N-K} \alpha_1 \Pi_{i=2}^{K}(1-f- \alpha_i) = 0$$
The end goal is to find the set of values of $f$ and $N$ for which the system has solutions for which $0 \lt 1 - f - \alpha_i \lt 1$ for all the range of $N \gt K \gt 0$, which (i think) is equivalent to asking that $\Pi_{i=j}^{K}(1-f- \alpha_i) \lt 1$. I refer to this quantity as the remainder flux, because it can be interpreted as the net coefficient of attenuation after each node consumes a fixed ratio $f$ and a variable ratio $\alpha_i$
I've found a simple recursive solution for the $\alpha$ as
$$ \alpha_K = f ( 1-f)^{2K - N-1}$$ $$ \ldots $$ $$ \alpha_{j-1} = \frac{f (1-f)^{K - N + j - 1} }{ \Pi_{i=j}^{K}(1-f- \alpha_i) }$$
Doing some numerical experiments i've found that for $N=4000$ , $f=10^{-3}$, the system for $K=18$ is the highest for which there are solutions that satisfy the condition, but for $K=19$ the remainder flux becomes above one for $j=1$. On the other hand, for $f=10^{-4}$, the system has solutions for all $K \lt 4000$
I've been looking into how to figure how to find what values of $f$ and $N$ will produce "stable" solutions. Are there any suggestions that can help me?