So the problem is the following:
Given a complete deck of 52 cards, 9 cards are drawn one by one with reposition. What is the probability that in a hand (of 9 cards) in which 3 aces come out, the 3rd will come out at the j'th draw?
My answer:
I was able to reach the correct answer (according to the solutions to the exercise) for the 9'th draw, which is
$$\binom{8}{2}\left(\frac{4}{52}\right)^3\left(\frac{48}{52}\right)^6$$
My thinking being: Probability of getting 2 aces in the first 8 cards times the probability of getting an ace in the 9'th (and last) card.
For the j'th draw I ended up with the following answer:
$$\binom{j-1}{2}\left(\frac{4}{52}\right)^3\left(\frac{48}{52}\right)^6$$
The thinking being very similar to the one I used before. According to the solution this is wrong. The correct answer should be:
$$\binom{j-1}{2}\left(\frac{4}{52}\right)^3\left(\frac{48}{52}\right)^{j-3}$$
Where did I go wrong? Did they actually mean "at least 3 aces"?
Since there is exactly 3 aces in the 9 cards you can calculate the number of different positions for the aces, i.e.
That is $$\binom{9}{3} = 84$$
combinations in total.
The last ace can be in position 3, 4, ... 9
If the last ace is in position 3 there need to be exactly 2 aces in the 2 positions before position 3. Now calculate in how many ways that can be done:
$$\binom{2}{2} = 1$$
If the last ace is in position 4 there need to be exactly 2 aces in the 3 positions before position 4. Now calculate in how many ways that can be done:
$$\binom{3}{2} = 3$$
If the last ace is in position 5 there need to be exactly 2 aces in the 4 positions before position 5. Now calculate in how many ways that can be done:
$$\binom{4}{2} = 6$$
And so on...
This gives
So in general
$$\binom{j - 1}{2} / 84$$