I know that the solution I have is wrong but I'd like to give you my thought process in the hopes that someone can point out the flaw in my thinking:
Since there has to be $j$ balls in the first bucket, I remove $j$ balls from $n$ and one bucket from $k$ and then find the number of ways $n-j$ balls can be randomly distributed into $k-1$ buckets instead.
Using the stars and bars method where there are $n-j$ stars and $k-2$ bars, we get that there are ${n-j+k-2} \choose {k-2}$ ways to find the number of ways $n-j$ balls can be randomly distributed into $k-1$ buckets.
Then I need to find the total number of random ball distributions of all the balls and all the buckets. There are ${n+k-1} \choose {k-1}$ ways to do that using the stars and bars method.
Putting it all together, we get that the probability is ${n-j+k-2} \choose {k-2}$ all over ${n+k-1} \choose {k-1}$.
Where did I go wrong? Is the entire reasoning flawed to begin with or can it be recovered with some tweaks?
I should note that these balls are indistinguishable.
Edit: If I could checkmark everyone's answer I would, but the least I could do is upvote them, thanks everyone for the clarification.
The question in the textbook is: If $n$ balls are distributed randomly into $k$ urns, what is the probability that the last urn contains $j$ balls?
After subbing in random values for the variables into both equations (mine and the solutions), they result in different probabilities.
– Hugh N. Nov 10 '18 at 02:45