Considering this discrete function:
$$f(n)=\frac{N!}{n!(N-n)!}p^n q^{N-n}$$
Where $n \lt N\ $, $\ p+q=1\ $, and $\ N,n,p,q\gt0$.
Is
$$|f(n+1)-f(n)| \ll f(n)$$
the condition which allows the approximation of $f(n)$ with a continuous function $h(n)$ when n is very big?
If yes (which I think is the case),
$$f(n)=\frac{N!}{n!(N-n)!}p^n q^{N-n}$$ $$f(n+1)=\frac{N!}{(n+1)!(N-n-1)!}p^{n+1} q^{N-n-1}$$ $$=\frac{N!(N-n-1)}{(n+1)n!(N-n)!}p^n q^{N-n} \frac{p}{q}$$ $$=f(n)\frac{N-n-1}{n+1}\frac{p}{q}$$ $$\implies f(n)\left|\frac{(N-n-1)p}{(n+1)q}\right|\ll f(n)$$ If $n$ is big, $$\implies \left|\frac{(N-n)p}{nq}\right|\ll 1$$ $$(N-n)p\ll nq$$ $$Np\ll n$$
But we have $n<N$, this is a contradiction.
But, the function described above, in the limit of very big $n$ gets like the Gaussian bell function. And CAN be approximated with a continuous function (which is like $e^{-x^2}$).
What am I doing wrong?