Analyzing the Setup
Imagine you are standing before a complex, intimidating expression: 3n+7n. The problem asks us to find all two-digit numbers n such that this sum is a multiple of 10.
At first glance, you might be tempted to start calculating powers of 3 and 7 for every n from 10 to 99. But stop! That is a trap. In JEE Advanced, we don't calculate; we observe. We look for the hidden symmetry.
The Insight
The secret lies in the relationship between the bases. We are working modulo 10. Notice that 7≡−3(mod10).
This is the spark! By rewriting 7 as 10−3, we transform our expression into 3n+(10−3)n. This simple substitution is the key that unlocks the entire problem.
We have moved from a brute-force calculation to a structural analysis.
The Binomial Magic
Now, let us apply the Binomial Theorem to the term (10−3)n. The expansion is:
(10−3)n=(0n)10n−(1n)10n−1(3)+⋯+(−3)n
Look closely at this expansion. Every single term, except for the very last one, contains a power of 10.
In the world of modulo 10, any term that is a multiple of 10 is effectively zero. So, the entire expansion collapses! We are left with just the last term: (−3)n.
Our original expression, 3n+7n, now simplifies beautifully to 3n+(−3)n(mod10).
The Parity Fork
Now we face a fork in the road, determined by the parity of n.
Case 1: n is even.
If n is even, then (−3)n=3n. Our expression becomes 3n+3n=2⋅3n.
Since 3n is always odd, 2⋅3n is 2 times an odd number. This will always end in 2,4,6, or 8. It will never be a multiple of 10. So, even numbers are out.
Case 2: n is odd.
If n is odd, then (−3)n=−3n. Our expression becomes 3n−3n=0.
And 0 is, by definition, a multiple of 10. This means the condition is satisfied for every odd number!
Final Calculation
We have discovered that n must be an odd two-digit number. The range is 10≤n≤99.
The odd numbers in this range are 11,13,15,…,99. This is an arithmetic progression where the first term a=11, the last term l=99, and the common difference d=2.
To find the total count, we use the formula N=dl−a+1. Substituting our values:
N=299−11+1=288+1=44+1=45
There are exactly 45 such numbers. We didn't just solve a problem; we navigated a mathematical landscape, using the Binomial Theorem as our compass and parity as our guide.