I asked a recent question, which contained this problem:
With the numbers 1,2,3 How many numbers of 6 digits contain the digits 1, 2 and 3 at least once?
The truth is, I ask a lot of questions about combinatorics, because it's something I've been learning on my own.
I like to really understand how it works, the answer to this exercise is:
$V^3_3 * P(6) = 3^3 * \frac{6!}{3! * 3!}$
And what I need to understand is how it has come to be a variation with a permutation with repetition, why the repetition of the permutation is 3! * 3! ? I do not mean the formula, but the logic used to arrive at that solution. Please, if you will answer me in a simple way, abstain, I really want to understand it.
$3^3$ represents the other 3 digits other than 1,2,3, which must occur in the number. And there are $\frac{6!}{3!3!}$ ways to arrange each sequence.