The Architecture of 'EXAMINATION'
Welcome, student. Today, we are not just solving a permutation problem; we are performing an autopsy on a word. The word is 'EXAMINATION'.
At first glance, it looks like a simple string of eleven letters. But to a JEE aspirant, it is a treasure trove of combinatorial logic. When you see a word with repeating letters, your internal alarm should ring.
This is not a simple nPr problem. This is a problem of structure, of cases, and of careful, methodical counting.
Phase 1
The DNA of the Word
Before we touch a single formula, we must understand our raw materials. Let us break down 'EXAMINATION' into its constituent parts. We have 11 letters in total.
Are they unique? Absolutely not. We have the letter A appearing twice, the letter I appearing twice, and the letter N appearing twice. These are our 'pairs'.
What remains? We have E,X,M,T,O. These are our 'singles'.
In total, we have 8 distinct types of letters (A,I,N,E,X,M,T,O) to work with. This distinction between 'types' and 'total letters' is the foundation of our entire solution. If you miss this, you miss the problem.
Phase 2
The Strategy of Cases
Since we need to form a 4-letter word, we cannot use a one-size-fits-all formula. We must partition our task into mutually exclusive scenarios. Think of this as building a house: we have different blueprints depending on the materials we choose.
Case I
The 'All Different' Scenario
Imagine we want to pick 4 letters, and we want them all to be unique. We have 8 distinct types of letters available. We choose 4 of them in (48) ways.
Once we have these 4 unique letters, how many ways can we arrange them? That is a simple 4!.
So, our total for Case I is:
This is our baseline.
Case II
The 'One Pair' Scenario
Now, things get interesting. What if our 4-letter word contains exactly one pair of identical letters? We need to select one pair from our 3 available pairs (A,I,N). That is (13) ways.
Now, we need 2 more letters to complete our 4-letter word. Since we have already used one type for our pair, we have 7 types left. We choose 2 from these 7 in (27) ways.
Now, the arrangement. We have 4 letters, but 2 are identical. Because of the pair, we must divide by 2! to remove the duplicates.
Putting it all together:
(13)×(27)×2!4!=3×21×12=756
Case III
The 'Two Pairs' Scenario
Finally, the rarest case: our word consists of two pairs of identical letters. We have 3 pairs available, and we need to choose 2 of them. That is (23) ways.
Now, we arrange these 4 letters (two pairs). The arrangement formula for this is 2!×2!4!. This accounts for the redundancy of both pairs.
So, we have:
(23)×2!×2!4!=3×424=3×6=18
The Grand Summation
We have navigated the three possible worlds of this problem. We have the 'All Different' world (1680), the 'One Pair' world (756), and the 'Two Pairs' world (18).
The final step is the most satisfying part of the journey: we sum them up.
There you have it. We didn't just calculate a number; we dissected the logic of the word. You have mastered the art of case-based counting.
Remember, in JEE, the problem isn't just about the calculation—it's about the strategy. Keep this clarity, and no permutation problem will ever intimidate you again. The final answer is 2454.