I'm trying to wrap my head around combinations and permutations. Calculating the probability of rolling a 6 in these two senarios.
$$ P(\text {rolling a 6 in k throws}) = 1 - P(\text{not rolling 6 in k throws}) = $$
When rolling the dice one by one, using permutations with repetition ($n^k$), we get: $$ 1- \frac{5^k}{6^k} $$
when thrown all at once, since the dice are indistinguishable, we use combinations with repetition: $\binom{n+k-1}{k}$
$$ 1 -\frac{\binom{5+k-1}{k}}{\binom{6+k-1}{k}} = 1 - \frac{5}{5+k} $$
Shouldn't those two probabilities be the same? Where is the error in my reasoning?
Your combinations are not equiprobable. Try it with two coins. The possible combinations are $HH,TH,TT$ and the probabilities are $\frac 14,\frac 12,\frac 14$.