rize1159 said:
I have fourteen characters like
a,b,c,d,e,f,g,h,i,j,k,l,m,n
now I want the combination/permutation in such a way that combination of same characters are not repeated i.e.
abcde=cdabe=ebacd etc, so only single combination is possible for same letters. Now question is that how many combination can be made for 14 letters and each combination consists of only 5 letters. and what would be the formula for this

:lol:
Your question is slightly ambiguous.
Is aaaaa an acceptable combination? I am going to assume that it is NOT.
Let's try an example. Let's start with selecting 2 characters out of 5.
How many ways are there to select 2 out of 5 characters if no character is to be repeated and different sequences of the same characters are to be treated as the same?
Well, there are 5 ways to select the first character. For each one of those 5 ways, there are 4 ways to select the second, right?
So, there are (5 * 4) = 20 ways to select without replacement a sequence of 2 items from 5 items. This is called the number of permutations.
Of course, this computation of the number of permutations considers (a, b) and (b, a) to be different. Consequently, we have overcounted if we are not concerned about sequence. How many ways can we sequence two items? Well, either a comes first and b comes second, or b comes first and a comes second. The number of possible sequences for each selection is 2. So, the correct answer in this case is (20 / 2) = 10. This is called the number of combinations. LET'S CHECK OUR ANSWER. In selecting (without replacement and disregarding order) 2 out of the 5 characters a, b, c, d, e, the possibilities are (a, b), (a, c), (a, d), (a, e), (b, c), (b, d), (b, e), (c, d), (c, e), and (d, e). Sure enough, there are 10 combinations.
If you understand this one example, you will understand about permutations and combinations.
Now YOU calculate the number of permutations and combinations of selecting three items from a collection of five items.
First, what is the number of possible permutations?
Second, how many ways can you sequence each selection?
Third, what is the number of possible combinations?