Suppose you have a standard Polya Urn process: as the initial step you have $1$ red ball and $1$ blue ball in an urn; at further each step you draw a ball and then replace it together with another ball of the same colour, so at step $n+1$ (i.e. after $n$ draws) you have $X_{n+1}$ red balls and $n+2-X_{n+1}$ blue balls where $P(X_{n+1} = k+1 \mid X_{n}=k)= \frac{X_{n}}{n+1}$ and $P(X_{n+1} = k \mid X_{n}=k)= \frac{n+1-X_{n}}{n+1}$, starting with $X_1=1$; the marginal distribution of $X_n$ is discrete uniform on $\{1,2,\ldots,n\}$ each with probability $\frac{1}{n}$ and so $\frac{X_n}{n+1}$ converges in distribution to being continuous uniform on $(0,1)$.
Let's call $\mathbf{X}=\left(X_1,X_2,X_3, \ldots\right)$ a Polya Urn sequence, and let's take $\mathbf{Y}=\left(Y_1,Y_2,Y_3, \ldots\right)$ and $\mathbf{Z}=\left(Z_1,Z_2,Z_3, \ldots\right)$ as two independent Polya Urn sequences. What is the probability that $\mathbf{Y}$ and $\mathbf{Z}$ do not meet again i.e. $\mathbb P(\nexists n\gt 1: Y_n =Z_n \ )$, and what is the probability that $\mathbf{Y}$ and $\mathbf{Z}$ do not cross i.e. $\mathbb P(\nexists n,m: Y_n >Z_n \cap Y_m < Z_m\ )$?
Simulation suggests:
- $\mathbb P(\nexists n\gt 1: Y_n =Z_n \ ) \approx 0.333$. Is this exactly $\frac13$?
- $\mathbb P(\nexists n,m: Y_n > Z_n \cap Y_m < Z_m\ ) \approx 0.713$. What is this more precisely?
Here is an example of a simulation using R (I did more and extrapolated to estimate the result for infinite sequences):
PUsequence <- function(maxn){
X <- 1
for (n in 1:(maxn-1)){
X[n+1] <- X[n] + rbinom(1, 1, X[n]/(n+1))
}
X
}
abovebelow <- function(maxn){
Y <- PUsequence(maxn)
Z <- PUsequence(maxn)
c(sum(Y-Z > 0), sum(Y-Z < 0))
}
set.seed(2025)
maxn <- 2^9
cases <- 10^5
sims <- replicate(cases, abovebelow(maxn))
mean(sims[1,] == maxn-1 | sims[2,] == maxn-1)
0.33285
mean(sims[1,] == 0 | sims[2,] == 0)
0.71513
and the initial parts of some simulated paths
