N urns are assigned m balls in a stochastic process based on a Pareto distribution. The process is as follows:
X is a Pareto random variable (xminimum = 1, alpha is a parameter) if X > N, throw the ball out Otherwise, put the ball in urn number floor(X)
Do this until m balls have been put in urns. Then rank the urns by number of balls.
What should the final distribution look like, as N and m approach infinity? Does it resemble any standard prob. distribution? Doing Monte Carlo simulations, it seems to be heavy tailed, but not a Pareto distribution. But I'm new to this - just getting my feet wet with stochastic processes.
Edit: Primary question is: What is prob. mass. function for balls in k-th urn (after ordering them). But I'm open to answers along the lines of: Look at it differently. Basic goal is - given a selection of choices, with balls assigned to them, but some choices a priori more popular, what is relationship between stochastic process and pmf of results? (And, yes, if you can't tell, I'm coming from an applied perspective... this question is a simplification of a model encountered assigning awards to favorites).
Ignoring the reranking (as jorki says, it seems to makes things too complicated), I think you can say something like:
The probability that the any particular ball which goes into an urn turns out to go into the $k$th urn [$1 \le k < N $] is $$P_k = \frac{1/k^{\alpha} - 1/(k+1)^{\alpha}}{1-1/N^{\alpha}}$$
With $m$ balls in total in the urns, the probability that there are $m_k$ in the $k$th urn is $$\Pr (M_k=m_k) = \binom{m}{m_k} P_k^{m_k} (1-P_k)^{m-m_k}$$ i.e. a binomial distribution $B(m,P_k)$
Taking the distribution over the urns together, rather than individual urns, this is a multinomial distribution, with the parameters $m$ and $P_1, P_2, \ldots$