Find the number of words formed by permuting all the letters of the following words :

INTERMEDIATE

Since we know, Permutation of n objects taking r at a time is nPr,and permutation of n objects taking all at a time is n!


And, we also know Permutation of n objects taking all at a time having p objects of the same type, q objects of another type, r objects of another type is . i.e. the, number of repeated objects of same type are in denominator multiplication with factorial.


Given, the word INTERMEDIATE. It has 12 letters, and it has 3 repeated letters ‘I,’ ‘T,’ ‘E.’ Of which, the letter I is repeated twice, the letter T is repeated twice, and the letter E is repeated 3 times in that word. All other letters are distinct.


The problem can now be rephrased as to find total number of permutations of 12 objects (I, N, T, E, R, M, E, D, I, A, T, E) of which two objects are of same type (I, I), two objects are of another type (T, T), and three objects are of different type (E, E, E).


Total number of such permutations



= 19958400


Hence, a total number of permutations of the word INTERMEDIATE is 19958400.


1