Key Concept: The Binomial Theorem and Modular Arithmetic
The Binomial Theorem states that for any non-negative integer n, the expansion of (a+b)n is given by:
(a+b)n=∑k=0n(kn)an−kbk=(0n)an+(1n)an−1b+(2n)an−2b2+⋯+(nn)bn
When dealing with remainders (modular arithmetic), we often express the base number in the form (M±x)n, where M is a multiple of the divisor or shares a common factor with it. This allows many terms in the binomial expansion to become multiples of the divisor, simplifying the calculation.
A particularly useful property for sums of powers is:
(X+Y)n+(X−Y)n=2[(0n)XnY0+(2n)Xn−2Y2+(4n)Xn−4Y4+…]
This identity shows that terms with odd powers of Y cancel out, and terms with even powers of Y are doubled.
Step 1: Expressing the Base Numbers Relative to the Divisor's Factors
We need to find the remainder when 19200+23200 is divided by 49.
The divisor is 49. We observe that 49=72.
Our strategy is to express the base numbers, 19 and 23, in terms of a multiple of 7, which is 21.
This is because 21=3×7, and more importantly, 212=441=9×49. Any term in the binomial expansion containing 21k for k≥2 will be a multiple of 49.
We can write:
19=21−2
23=21+2
Now, the expression becomes:
19200+23200=(21−2)200+(21+2)200
Step 2: Applying the Binomial Theorem and Simplifying Modulo 49
Let's expand (21−2)200 and (21+2)200 using the Binomial Theorem and sum them up.
For (21−2)200:
(21−2)200=(0200)(21)0(−2)200+(1200)(21)1(−2)199+(2200)(21)2(−2)198+…
For (21+2)200:
(21+2)200=(0200)(21)0(2)200+(1200)(21)1(2)199+(2200)(21)2(2)198+…
Now, let's sum these two expressions modulo 49.
Notice that any term containing (21)k where k≥2 will be a multiple of 212=441, which is 9×49. Therefore, these terms will be ≡0(mod49).
So, we only need to consider the first two terms (for k=0 and k=1) from each expansion:
(21−2)200≡(0200)(−2)200+(1200)(21)(−2)199(mod49)
(21+2)200≡(0200)(2)200+(1200)(21)(2)199(mod49)
Adding these congruences:
19200+23200≡[(0200)(−2)200+(1200)(21)(−2)199]+[(0200)(2)200+(1200)(21)(2)199](mod49)
19200+23200≡(0200)((−2)200+(2)200)+(1200)(21)((−2)199+(2)199)(mod49)
Let's evaluate the terms in the parentheses:
- For the first term, since 200 is an even power, (−2)200=2200.
So, ((−2)200+(2)200)=(2200+2200)=2⋅2200=2201.
- For the second term, since 199 is an odd power, (−2)199=−2199.
So, ((−2)199+(2)199)=(−2199+2199)=0.
Substituting these back:
19200+23200≡(0200)(2201)+(1200)(21)(0)(mod49)
Since (0200)=1:
19200+23200≡1⋅2201+0(mod49)
19200+23200≡2201(mod49)
Step 3: Simplifying the Remaining Power Modulo 49
Now we need to find the remainder of 2201 when divided by 49.
We rewrite 2201 to involve a factor of 7, which is related to our divisor 49.
2201=(23)67=867
Now we express 8 as (7+1), as 7 is a factor of 49:
867=(7+1)67
Again, we apply the Binomial Theorem:
(7+1)67=(067)70167+(167)71166+(267)72165+…
Modulo 49, all terms containing 7k where k≥2 will be multiples of 72=49, and thus will be ≡0(mod49).
So, we only need to consider the first two terms:
(7+1)67≡(067)167+(167)71(mod49)
(7+1)67≡1+67×7(mod49)
Now we simplify 67×7(mod49). First, reduce 67 modulo 49:
67=1×49+18⟹67≡18(mod49)
So,
67×7≡18×7(mod49)
18×7=126
Now, reduce 126 modulo 49:
126=2×49+28⟹126≡28(mod49)
Substituting this back into our expression for (7+1)67:
(7+1)67≡1+28(mod49)
(7+1)67≡29(mod49)
Therefore, 2201≡29(mod49).
Tips for Success and Common Mistakes
- Choose the right base: When working modulo N, try to express the bases as (kN±x) or (k⋅factor of N±x) to simplify expansions. Here, 21 was chosen because 212 is a multiple of 49.
- Identify relevant terms: In binomial expansions modulo M, often only the first few terms (or even just one) contribute to the remainder, as higher power terms become multiples of M.
- Parity is crucial: For expressions like (X+Y)n+(X−Y)n, terms might cancel out due to parity of exponents. Always check if the exponent makes (−Y)exponent equal to Yexponent or −Yexponent.
- Intermediate Reduction: Continuously reduce numbers modulo the divisor in intermediate steps to keep calculations manageable. For example, reducing 67 to 18 before multiplying by 7.
Summary
By strategically applying the Binomial Theorem and carefully using modular arithmetic, we first transformed the original expression into a simpler form 2201(mod49). Then, by rewriting 2201 as 867=(7+1)67, we applied the Binomial Theorem again to efficiently calculate the remainder. The final remainder when 19200+23200 is divided by 49 is 29. This problem effectively demonstrates how the Binomial Theorem is a powerful tool for solving problems involving large powers and modular arithmetic.