Consider the following problem, from Tijms's Understanding Probability:
The Bubble Company offers a picture of one of 25 popstars in a pack of chewing gum. John and Peter each buy one pack every week. They pool the pictures of the popstars. Assuming equal chances of getting any of the 25 pictures with one purchase, denote by the random variable $N$ the number of weeks until John and Peter have collected two complete sets of 25 pictures. Calculate the expected value of N and calculate the probability $P (N > n)$ for $n = 50$, 75, 100, 125, and 150.
This problem should be solvable with an absorbing Markov chain.
I define the system to be in the state $(i,j)$ when $j$ popstars have appeared two or more times so far, and $i-j$ popstars have appeared exactly one time. Clearly, $1\le i\le 25$ and $0\le j\le i$.
The state $(25,25)$ is absorbing, since it corresponds to a completed collection.
The transition probabilities for the non-absorbing states are: $$ \begin{gathered} p_{(i,j),(i+1,j)} = \frac{25-i}{25} \\ p_{(i,j),(i,j+1)} = \frac{i-j}{25} \text{ for } j+1\le i\\ p_{(i,j),(i,j)} = \frac{j}{25} \text{ for } (i,j)\ne(25,25). \end{gathered} $$
To solve a problem with some matrix computations, we need a way to index the states, and a possible choice I guess is: $$ \text{index}(i,j) = i + 25j - \frac12 (j-1)(j-2). $$ Then, to answer e.g. the question on the probability $P(N>50)$ I should compute the 99-th power (because there are two draws for every week, and we start with state $(1,0)$ which corresponds with a single draw), but this seems quite complicated for a textbook problem. Also, the matrix is quite large so computing all these matrix products seems expensive.
Am I missing something?