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

Question

The remainder on dividing 5995^{99} by 11 is ____________.

Answer: 5

Solution

Key Concepts and Formulas

This problem involves finding the remainder of a large power when divided by a number, which is a classic application of modular arithmetic. Specifically, we will leverage:

  1. Modular Exponentiation: The process of finding the remainder of a large power of an integer when divided by another integer.
  2. Properties of Modulo:
    • If ab(modm)a \equiv b \pmod{m} and cd(modm)c \equiv d \pmod{m}, then acbd(modm)ac \equiv bd \pmod{m}.
    • If ab(modm)a \equiv b \pmod{m}, then akbk(modm)a^k \equiv b^k \pmod{m} for any positive integer kk.
  3. Fermat's Little Theorem: If pp is a prime number, then for any integer aa not divisible by pp, we have ap11(modp)a^{p-1} \equiv 1 \pmod{p}.

Step-by-step Solution

Our goal is to find the remainder of 5995^{99} when divided by 11. This can be written as finding 599(mod11)5^{99} \pmod{11}.

Step 1: Simplify the base (if necessary) First, check if the base of the exponent (55 in this case) can be simplified modulo 1111. Since 5<115 < 11, 55(mod11)5 \equiv 5 \pmod{11}. No simplification is needed here.

Step 2: Find the cyclical pattern (Order of 5 modulo 11) We look for the smallest positive integer kk such that 5k1(mod11)5^k \equiv 1 \pmod{11}. This is called the order of 55 modulo 1111. According to Fermat's Little Theorem, since 1111 is a prime number and 55 is not divisible by 1111, we know that 51115101(mod11)5^{11-1} \equiv 5^{10} \equiv 1 \pmod{11}. This tells us that the order divides 1010, so kk could be 1,2,5,1, 2, 5, or 1010. Let's calculate powers of 55 modulo 1111:

  • 515(mod11)5^1 \equiv 5 \pmod{11}
  • 52=253(mod11)5^2 = 25 \equiv 3 \pmod{11} (Since 25=2×11+325 = 2 \times 11 + 3)
  • 5352×513×5=154(mod11)5^3 \equiv 5^2 \times 5^1 \equiv 3 \times 5 = 15 \equiv 4 \pmod{11} (Since 15=1×11+415 = 1 \times 11 + 4)
  • 5453×514×5=209(mod11)5^4 \equiv 5^3 \times 5^1 \equiv 4 \times 5 = 20 \equiv 9 \pmod{11} (Since 20=1×11+920 = 1 \times 11 + 9)
  • 5554×519×5=451(mod11)5^5 \equiv 5^4 \times 5^1 \equiv 9 \times 5 = 45 \equiv 1 \pmod{11} (Since 45=4×11+145 = 4 \times 11 + 1)

We found that 551(mod11)5^5 \equiv 1 \pmod{11}. This is a more efficient cycle than 5105^{10}. The significance of finding 551(mod11)5^5 \equiv 1 \pmod{11} is that any power of 555^5 will also be congruent to 11 modulo 1111. That is, (55)m1m1(mod11)(5^5)^m \equiv 1^m \equiv 1 \pmod{11}.

Step 3: Reduce the exponent using the cycle Now, we want to evaluate 599(mod11)5^{99} \pmod{11}. We use the fact that 551(mod11)5^5 \equiv 1 \pmod{11}. Divide the exponent 9999 by the cycle length 55: 99=5×19+499 = 5 \times 19 + 4 This means we can rewrite 5995^{99} as: 599=5(5×19)+4=(55)19×545^{99} = 5^{(5 \times 19) + 4} = (5^5)^{19} \times 5^4 Now, substitute the modular equivalences: 599(1)19×54(mod11)5^{99} \equiv (1)^{19} \times 5^4 \pmod{11} 5991×54(mod11)5^{99} \equiv 1 \times 5^4 \pmod{11} 59954(mod11)5^{99} \equiv 5^4 \pmod{11}

Step 4: Calculate the final remainder From Step 2, we already calculated 549(mod11)5^4 \equiv 9 \pmod{11}. Therefore, 5999(mod11)5^{99} \equiv 9 \pmod{11} The remainder when 5995^{99} is divided by 1111 is 99.

Tips and Common Mistakes to Avoid

  • Don't overcomplicate: Sometimes, a smaller cycle (like 551(mod11)5^5 \equiv 1 \pmod{11}) exists even if Fermat's Little Theorem suggests a larger one (5101(mod11)5^{10} \equiv 1 \pmod{11}). Always test smaller powers to find the actual order for efficiency.
  • Modular Arithmetic is your friend: Always perform modulo operations at intermediate steps to keep numbers small and manageable. For instance, instead of calculating 54=6255^4 = 625 directly and then 625(mod11)625 \pmod{11}, we calculated 52=253(mod11)5^2 = 25 \equiv 3 \pmod{11}, then 533×5154(mod11)5^3 \equiv 3 \times 5 \equiv 15 \equiv 4 \pmod{11}, etc. This reduces the chance of large calculation errors.
  • Be careful with negative remainders: While 92(mod11)9 \equiv -2 \pmod{11} is true, the problem asks for the remainder, which by convention is a non-negative integer less than the divisor. So 99 is the correct final answer.
  • Understanding the binomial expansion (alternative approach): The original solution tried to use the binomial theorem. While valid, it's often more complex for this type of problem. If 55=3125=11×284+15^5 = 3125 = 11 \times 284 + 1, we can write 3125=11k+13125 = 11k + 1. Then (3125)19=(11k+1)19(3125)^{19} = (11k+1)^{19}. By the binomial theorem, this expands to (11k)19+(191)(11k)18(1)++(1918)(11k)(1)18+(1)19(11k)^{19} + \binom{19}{1}(11k)^{18}(1) + \dots + \binom{19}{18}(11k)(1)^{18} + (1)^{19}. All terms except the last one will have a factor of 1111, so (11k+1)191191(mod11)(11k+1)^{19} \equiv 1^{19} \equiv 1 \pmod{11}. This confirms (55)191(mod11) (5^5)^{19} \equiv 1 \pmod{11}, which is the same result achieved more simply by 1191(mod11)1^{19} \equiv 1 \pmod{11}.

Summary and Key Takeaway

To find the remainder of a large power ana^n when divided by mm:

  1. Find the cycle length (order) of aa modulo mm, i.e., the smallest positive integer kk such that ak1(modm)a^k \equiv 1 \pmod{m}. Fermat's Little Theorem can help narrow down possibilities if mm is prime.
  2. Reduce the exponent nn modulo kk. Let n=qk+rn = qk + r, where rr is the remainder.
  3. Then anar(modm)a^n \equiv a^r \pmod{m}. Calculate ar(modm)a^r \pmod{m} to find the final remainder. Applying this method, the remainder on dividing 5995^{99} by 1111 is 99.

Practice More Binomial Theorem Questions

View All Questions