Analyzing the Setup
The problem of arranging five students (S1,S2,S3,S4,S5) into five seats (C1,C2,C3,C4,C5) such that no student sits in their own assigned seat is a classic combinatorial challenge known as a Derangement.
In mathematical terms, we are looking for the number of permutations of the set {1,2,3,4,5} such that no element i remains in its original position i. This constraint defines a permutation without any "fixed points."
The Inclusion-Exclusion Principle
To solve this, we employ the Inclusion-Exclusion Principle. We start with the total number of permutations, which is 5!=120, and systematically remove arrangements where at least one student is in their correct seat.
The general formula for the number of derangements Dn is derived as follows:
Dn=n!−(1n)(n−1)!+(2n)(n−2)!−(3n)(n−3)!+⋯+(−1)n(nn)(0!)
This expression simplifies to the elegant summation:
Final Calculation for n=5
Applying the formula for n=5, we calculate:
D5=5!(1−1!1+2!1−3!1+4!1−5!1)
Since 1−1/1!=0, the expression simplifies to:
D5=5!(2!1−3!1+4!1−5!1)
Expanding this, we get:
D5=2!5!−3!5!+4!5!−5!5!=60−20+5−1=44
The total number of ways to arrange the students such that no one sits in their own seat is 44.
The Recursive Perspective
Alternatively, we can use the recursive relation Dn=(n−1)(Dn−1+Dn−2). This method is often more efficient for manual calculation.
Starting with the base cases D1=0 and D2=1, we compute the sequence:
D3=(3−1)(D2+D1)=2(1+0)=2
D4=(4−1)(D3+D2)=3(2+1)=9
D5=(5−1)(D4+D3)=4(9+2)=4(11)=44
Both the Inclusion-Exclusion Principle and the recursive relation yield the same result, confirming the robustness of our solution. Embracing these multiple perspectives is a vital skill for success in your JEE preparation.