I have the classic Polyas Urn problem. Let $t$ be the time steps $t \in \{1, \ldots,N\}$. At $t=1$ there is one red and one green ball in the urn. Let $R_n$ and $G_n$ denote the number of red and green balls before the $n$-th draw. The total number of balls at timestep $n$ are therefore $T_n=R_n+G_n=1+n$.
I want to show that: $$P(R_n=k)=\frac{1}{n}, \, \, \, \, \, \text{for} \, \, \, \, \, n\in\{1,\ldots,N\},k\in\{1,\ldots,n\}$$
I have three questions regarding this problem:
Edit I made a mistake here and deleted this question.
I derived earlier that for $n \in \{2,\ldots,N\}$ and $2 \le k \le n-1$ the following equalities are true:
$$\begin{aligned} &P(R_n=k \vert R_{n-1}=k)=\frac{n-k}{n} \\[10pt] &P(R_n=k \vert R_{n-1}=k-1)=\frac{k-1}{n} \end{aligned}$$
Can I somehow use these to show that $P(R_n=k)=\frac{1}{n}$?
- I have looked at lot of the polya's urn questions on this site that seem to deal with uniform distributions. (Intuitive/heuristic explanation of Polya's urn, Question related with Polya urn model, distribution of number of red balls in the first $n$ trials) but they always seem to give some sort of intuitive explanation of why it must be true rather than a derivation. On the other hand some of the derivations I have seen on the web use techniques we haven't covered in class so I am thinking there must be an easier straight forward way to show this but I don't know how.
It just seems I am assuming the result $P(R_n=k)=\frac{1}{n}$ which I want to prove.
– Nullspace Jun 16 '21 at 21:07