Let say we have a finite set, A, with the cardinality $n$, and want to find how many different subsets with the cardinality $r$ does A have.
By JUST using the product rule, which says that;
If I have a procedure consisting of $k$ tasks and each task, $t_i$, can be done in $n_i$ different ways, then the whole procedure can be done in $\prod_{i=1}^{k} n_i$ ways.
So, the task is choosing an element from the set A rah times,so for the first choice there is $n$ option, for the second choice there is $n-1$ option .., and for the last option we have $(n-r+1)$, so by the product rule there is $\frac{n!}{(n-r)!}$, but this is a permutation, not combination, so where is my mistake ?
Moreover, in order to find the total number of subsets of A, by the sum rule, I computed $\sum_{r=0}^{k} \frac{n!}{(n-r)!}$, whose result is given by Mathematica as a function of Gamma function.
Note that I checked the question, which was my main question, but the example that I gave is enough for resolving the confusion.