I am interested in making a certain statement on the probability distribution of "drawing a sample with $d$ distinct elements, when the sample is of size $k$ and is drawn (with replacement) from a set containing $N$ distinct elements ". Here is an example (just to avoid confusion):
--EXAMPLE--
$N=\{A,B,C\}$; $k=2$
The number of possible samples of length $2$ when drawing a random sample (with replacement) from $N$ is given by $3^{2}=9$. More specifically these samples are:
$\{A,A\}$,$\{B,B\}$,$\{C,C\}$ (1 distinct element in each sample)
$\{A,B\}$,$\{B,A\}$,$\{A,C\}$,$\{C,A\}$,$\{B,C\}$,$\{C,B\}$ (2 distinct elements in each sample)
So the probability of drawing 1 distinct element is 3/9, and the probability of drawing 2 distinct elements is 3/9. Any ideas?
--END OF EXAMPLE--
In general the probability is given by:
$Prob(d|k,N)=(\frac{1}{N^{k}})\frac{N!}{(N-d)!}S(k,d)$
where $S(k,d)$ are Stirling numbers of the second kind.
I would now like to make a statement on what happens if $k$ or $N$ changes. $Intuitively$, if $N$ or $k$ increase, it will become $less$ likely that you draw a sample with a $low$ number of distinct elements and $more$ likely that you draw a sample with a $high$ number of distinct items (probability mass is shifting towards high values of $d$).
If we therefore consider the sign of the change in probability (that is the sign of $Prob(d|k+1,N)-Prob(d|k,N)$), there should be some critical value $d^*$ such that if $d<d^*$ then the sign is negative, whereas if $d>d^*$ then the sign if positive. There would therefore only be $one$ sign change (this is what I ultimately want to prove).
$\textbf{Question}$: How do I go about proving this $formally$? One thing I cannot seem to get my head around is how to deal with the Stirling numbers.
Clearly if $d=1$,then $S(k,1)=1$ so $Prob(1|k,N)=N^{-k}$. For this case it is easy to see what happens if $N$ or $k$ change, but for the subsequent cases it is less obvious. One thing I have been trying is to exploit the recurrence relationship of the Stirling numbers: $S(k+1,d)=d*S(k,d)+S(k,d-1)$, but without any success. Using this approach I do already know that the expected number of distinct items is equal to:
$E[d]=N-\frac{(N-1)^{k}}{N^{k-1}}$
Which is clearly increasing in $k$ and $N$. This does however not suffice to show the above statement.