InterviewSolution
Saved Bookmarks
| 1. |
Show that the total number of permutations of n different things takenn not more than r at a time, when each thing may be repated any number of times is (n(n^(r)-1))/((n-1)). |
|
Answer» `(N^r -1)/((n-1))` |
|