Find the number of permutations of four letters taken from the word "EXAMINATION".
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
How do you remove the spaces when using brackets for L A T E X ?
Log in to reply
Which spaces are you referring to?
If you want Latex on the same line, use the normal brackets. If you want Latex on a new line (and centered), use the square brackets.
Log in to reply
When I use brackets in problems, I get single space while here I get double space
Log in to reply
@Marc Vince Casimiro – I looked at your code, and I noticed that you added \ [ \ ] to create a new line. That would result in double spacing, because there is a space before the empty latex, and a space after the empty latex.
To start a new paragraph, simply hit enter.
If you want to start a new line without a paragraph spacing (like in this line), use 3 spaces at the end of the previous line.
I've edited your solution. You can click on edit to view how I've changed it.
I'm lucky we get 3 tries, I misread the word and thought it was EXAMINATIONS :D
We can consider the multiset ( 1 . E , 1 . X , 2 . A , 1 . M , 2 . I , 2 . N , 1 . T , 1 . O )
Hence the required exponential generating function is
G ( x ) = ( 1 + 1 ! x ) 5 ( 1 + 1 ! x + 2 ! x 2 ) 3
In the above, the co-efficient of 4 ! x 4 is 2 4 5 4 .
I basically used the following theorem:
The number of n -permutations of the multiset ( n 1 . a 1 , . . . , n k . a k )
is given by the co-efficient of n ! x n in
G ( x ) = f n 1 ( x ) . . . f n k ( x ) where f n i ( x ) = 1 + x + 2 ! x 2 + . . + n i ! x n i
Even i did by coefficient method . Nice
I too did it the same way.
The word examination consists of 11 letters -
(AA), (II), (NN), E, X, M, T, O.
The following combinations are possible:
(a) 2 alike, 2 alike:
³C2 = 3 ways
(b) 2 alike, 2 different:
³C1×7C2 = 63 ways
(c) all 4 different:
8C4 = 70 ways
Hence required number of combinations = 3 +63 +70 = 136.
To find the number of permutations: In (a), the number of permutations = 3×4!/[2!2!] = 18
In (b), the number of permutations = 63×4!/2! = 756
In (c), the number of permutations = 70×4!= 1680
Hence required number of permutations = 18 +756 +1680 = 2454.
How is That @utsavsinghal?
Log in to reply
I feel coefficient method is more better. Making cases makes it too long . By the way nice !
Problem Loading...
Note Loading...
Set Loading...
Five of the letters are different while there are three alike pairs. So we have three cases:
C a s e 1 : 2 same and 2 same ⟹ C ( 2 3 ) ∗ 2 ! 2 ! 4 ! = 1 8
C a s e 2 : 2 same and 2 different ⟹ C ( 1 3 ) ∗ C ( 2 7 ) ∗ 2 ! 4 ! = 7 5 6
C a s e 3 : All different ⟹ C ( 4 8 ) ∗ 4 ! = 1 6 8 0
So, the number of permutations is 1 8 + 7 5 6 + 1 6 8 0 = 2 4 5 4