Duoas wrote: |
---|
That's a permutation where repetition is permitted. |
Oh, ok. I'm from Greece and we use different terms here. When you have to put n (distinct) objects in n places, caring about the order and without repetition allowed, we call it a permutation of n objects. That is, a permutation by definition prohibits repetition.
A permutation is a special case of something that I couldn't find the english term for :/ When you have to put n (distinct) objects in k (<=n) places, caring about the order, we call it, let's say "ordering" (I don't know the english term). An "ordering" can be "repetitive" (i.e. repetition is allowed) or not. A permutation is a non-"repetitive" "ordering" where k==n.
What I wrote for the OP was the "repetitive" "ordering" of n objects in k places, where n==digit_values and k==digit_count. This, by definition, in my language, is not a permutation (not even if k==n, because it's still "repetitive").
We use the term "permutations with repetition" to describe the following situation:
You have n (non-distinct) objects, where k1 of them are identical to each other, k2 of them are identical to each other, ... and k1+k2+...==n (obviously) and you want to put them in n places, caring about the order of the non-identical objects. The number of ways you can do this is n!/(k1! * k2! * ...).
EDIT: Mmmm... Take a look at this->
http://mathworld.wolfram.com/Permutation.html
It defines permutations the way I do. I guess then that your site just oversimplifies things because it's a site for kids.