Analyzing the Setup
Welcome, warriors of JEE. Today, we are not just solving a permutation problem; we are embarking on a journey into the heart of number theory.
We have seven digits: {1,2,3,4,5,7,9}. We need to arrange them into a 7-digit number that is a multiple of 11.
The sum of our digits is S=1+2+3+4+5+7+9=31. This sum serves as our mathematical anchor.
The Alternating Balance
Recall the divisibility rule for 11: a number is divisible by 11 if the alternating sum of its digits is a multiple of 11.
Let O be the sum of the digits in the four odd positions, and E be the sum of the digits in the three even positions. The rule states that:
This is the core reality of our problem: we are splitting our set of digits into two teams, the 'Odd Team' and the 'Even Team', such that their difference is a multiple of 11.
The Algebraic Constraint
We have two governing equations: O+E=31 and O−E=11k.
Since O+E=31 is odd, O−E must also be odd. This forces 11k to be odd, meaning k must be an odd integer.
Given the range of our digits, the only possible values for O−E are 11 and −11. Solving these systems:
For
O−E=11:
2O=42⇒O=21,E=10
For
O−E=−11:
2O=20⇒O=10,E=21
The Combinatorial Hunt
Now, we identify the sets. In Case 1, we need 3 digits for the even positions that sum to 10.
By systematically checking combinations, we find: {1,2,7}, {2,3,5}, and {1,4,5}. These are 3 distinct sets.
In Case 2, we need 3 digits that sum to 21. The only combination is {5,7,9}.
The Final Symphony
Finally, we calculate the arrangements. For any chosen set of 3 digits in the even positions, there are 3! ways to arrange them.
The remaining 4 digits for the odd positions can be arranged in 4! ways. Thus, for each set, the number of arrangements is:
Since we have 3 sets in Case 1, we have 3×144=432 numbers. In Case 2, we have 1×144=144 numbers.
Adding these together, the total number of arrangements is:
We have conquered the problem. The final answer is 576.