There are $k ≥ 3$ bags, each containing m black and n white marbles. A marble is randomly chosen from the first bag and transferred to the second bag; then a marble is randomly chosen from the second bag and transferred to the third bag, and so on until a marble is randomly chosen from the kth bag. Find the probability that the marble chosen from (i) the 3rd bag is black; (ii) the $k$-th bag is black.
I don't understand how to proceed in this. I thought of trying recursion but it doesn't seem to be working. For the 3 bags case I think it is easy to solve by individually considering each case but for the kth part I have zero idea. Kindly help. The way I tried recursion: Suppose $P_k$ is the probability of drawing black ball from $k$-th bag. Then, $$P_k=P_k-1*(m+1)/(n+m+1)+(1-P_k-1)*m/(n+m+1)$$
I don't see a way of proceeding further, Plus this seems to be a bit too complicated. I was wondering if there is a simpler solution.
Thank you!