Skip to main content
Back to Binomial Theorem
JEE Main 2021
Binomial Theorem
Binomial Theorem
Easy

Question

If (2021) 3762 is divided by 17, then the remainder is __________.

Answer: 2021

Solution

Key Concept: Modular Arithmetic and Congruence Properties

This problem involves finding the remainder of a large number raised to a power when divided by another number. The core concept used is modular arithmetic, which deals with remainders. Specifically, we leverage the property of congruences: If ab(modn)a \equiv b \pmod n, then for any positive integer kk, akbk(modn)a^k \equiv b^k \pmod n. We also utilize the idea that (XY)N(Y)N(modX)(X - Y)^N \equiv (-Y)^N \pmod X and (X+Y)NYN(modX)(X + Y)^N \equiv Y^N \pmod X, which stems from the Binomial Theorem, to simplify expressions.


Step 1: Simplify the Base Modulo the Divisor

  • Goal: Our first step is to reduce the base number, 20212021, to its equivalent remainder when divided by the divisor, 1717. Working with smaller numbers is essential for simplifying subsequent calculations involving the large exponent.
  • Working: We perform the division of 20212021 by 1717: 2021÷17=118 with a remainder of 152021 \div 17 = 118 \text{ with a remainder of } 15 This can be written in congruence notation as: 202115(mod17)2021 \equiv 15 \pmod{17} To make further calculations easier, we can express 1515 using a negative remainder. Since 1515 is 22 less than 1717, we can write: 152(mod17)15 \equiv -2 \pmod{17} Therefore, 20212(mod17)2021 \equiv -2 \pmod{17}
  • Explanation: Using a negative remainder, like 2-2 instead of 1515, often simplifies computations, especially when dealing with large exponents. This is because raising a small negative number to a power can sometimes be less cumbersome than a larger positive number, particularly if it leads to powers of 1-1.

Step 2: Apply the Congruence Property to the Power

  • Goal: Replace the original base with its simplified modular equivalent. This allows us to work with a much smaller base while preserving the remainder property.
  • Working: Since 20212(mod17)2021 \equiv -2 \pmod{17}, we can substitute this into the original expression (2021)3762(2021)^{3762}: (2021)3762(2)3762(mod17)(2021)^{3762} \equiv (-2)^{3762} \pmod{17} As the exponent 37623762 is an even number, any negative base raised to an even power becomes positive. Therefore, (2)3762(-2)^{3762} simplifies to 237622^{3762}. So, the problem transforms into finding the remainder of 237622^{3762} when divided by 1717.
  • Explanation: This step is a direct application of the fundamental property of modular arithmetic: if two numbers are congruent modulo nn, then their respective powers will also be congruent modulo nn. The even exponent simplifies the negative base, which is a common trick in these types of problems.

Step 3: Simplify the Power of 2 Modulo 17

  • Goal: We need to efficiently calculate 23762(mod17)2^{3762} \pmod{17}. The key here is to find a power of 22 that has a simple remainder (like 11 or 1-1) when divided by 1717.
  • Working: We notice that 24=162^4 = 16. When 1616 is divided by 1717, the remainder is 1616, or more conveniently, 1-1. 24=161(mod17)2^4 = 16 \equiv -1 \pmod{17} Now, we want to express the exponent 37623762 in terms of powers of 44. We divide 37623762 by 44: 3762=4×940+23762 = 4 \times 940 + 2 This allows us to rewrite 237622^{3762} as: 23762=2(4×940+2)=(24)940×222^{3762} = 2^{(4 \times 940 + 2)} = (2^4)^{940} \times 2^2 Substituting 241(mod17)2^4 \equiv -1 \pmod{17} and 22=42^2 = 4: (24)940×22(1)940×4(mod17)(2^4)^{940} \times 2^2 \equiv (-1)^{940} \times 4 \pmod{17}
  • Explanation: By identifying 241(mod17)2^4 \equiv -1 \pmod{17}, we've found a way to significantly reduce the complexity. Working with powers of 1-1 is much simpler than working with powers of 22. We broke down the original exponent into a multiple of 44 (since 242^4 gives us the 1-1 congruence) and a remaining smaller exponent. This is a strategic application of exponent rules.

Step 4: Final Remainder Calculation

  • Goal: Complete the calculation to find the final remainder.
  • Working: Since 940940 is an even number, (1)940(-1)^{940} evaluates to 11. Therefore, our expression simplifies to: 1×4(mod17)1 \times 4 \pmod{17} 4(mod17)4 \pmod{17} The remainder is 44.
  • Explanation: The even exponent of 1-1 is critical here. A positive result directly gives us the final remainder, as 44 is less than 1717.

Tips and Common Mistakes to Avoid

  • Choosing the Right Remainder: Always consider both positive and negative remainders. For example, 15(mod17)15 \pmod{17} and 2(mod17)-2 \pmod{17} are equivalent. The choice that leads to 11 or 1-1 for a small power of the base is usually the most efficient.
  • Fermat's Little Theorem: For a prime modulus pp, if aa is not divisible by pp, then ap11(modp)a^{p-1} \equiv 1 \pmod p. Here, 2161(mod17)2^{16} \equiv 1 \pmod{17} could also be used. Dividing 37623762 by 1616 (3762=16×235+23762 = 16 \times 235 + 2) would lead to 23762(216)235×221235×44(mod17)2^{3762} \equiv (2^{16})^{235} \times 2^2 \equiv 1^{235} \times 4 \equiv 4 \pmod{17}. This is an equally valid and often powerful alternative method.
  • Exponent Parity: Always pay attention to whether the exponent is even or odd when dealing with negative bases, as (x)even=xeven(-x)^{\text{even}} = x^{\text{even}} and (x)odd=xodd(-x)^{\text{odd}} = -x^{\text{odd}}.
  • Final Remainder Must Be Positive: The final remainder must always be a positive integer between 00 and n1n-1 (inclusive), where nn is the divisor. If your calculation yields a negative remainder, add the divisor until it's positive. For example, if you got 13(mod17)-13 \pmod{17}, you would add 1717 to get 4(mod17)4 \pmod{17}.

Summary and Key Takeaway

To solve problems involving large powers and remainders:

  1. Simplify the base modulo the divisor.
  2. Look for a small power of the new base that results in a remainder of 11 or 1-1 (modulo the divisor). This is the key to breaking down large exponents.
  3. Use exponent rules to rewrite the original exponent in terms of multiples of the power found in step 2.
  4. Substitute the congruences and simplify to arrive at the final remainder. This systematic application of modular arithmetic properties allows us to solve seemingly complex problems without dealing with astronomically large numbers.

Practice More Binomial Theorem Questions

View All Questions