Question

Difficulty: Very hardModular Arithmetic

What is the smallest non-negative integer kk that satisfies the modular congruence 799+k15(mod11)7^{99} + k \equiv -15 \pmod{11}?

  1. 10Answer
  2. B
    1
  3. C
    7
  4. D
    8

Answer

The correct answer is 10.
Using Fermat's Little Theorem, 7101(mod11)7^{10} \equiv 1 \pmod{11}, which simplifies 799(mod11)7^{99} \pmod{11} to 798(mod11)7^9 \equiv 8 \pmod{11}. Reducing the right-hand side gives 157(mod11)-15 \equiv 7 \pmod{11}. The modular equation 8+k7(mod11)8 + k \equiv 7 \pmod{11} yields k1(mod11)k \equiv -1 \pmod{11}. Adding the modulus 1111 gives the canonical positive remainder 1010.

Step-by-Step Solution

1
Simplify 799(mod11)7^{99} \pmod{11} using Fermat's Little Theorem.
7101(mod11)7^{10} \equiv 1 \pmod{11}, so 799=(710)9×7919×7979(mod11)7^{99} = (7^{10})^9 \times 7^9 \equiv 1^9 \times 7^9 \equiv 7^9 \pmod{11}.
Since 1111 is prime and gcd(7,11)=1\gcd(7, 11) = 1, Fermat's Little Theorem allows exponent reduction modulo 1010.
2
Compute 79(mod11)7^9 \pmod{11}.
7177^1 \equiv 7, 72=4957^2 = 49 \equiv 5, 7452=2537^4 \equiv 5^2 = 25 \equiv 3, 757×3=21107^5 \equiv 7 \times 3 = 21 \equiv 10, 79=75×7410×3=308(mod11)7^9 = 7^5 \times 7^4 \equiv 10 \times 3 = 30 \equiv 8 \pmod{11}.
Repeated squaring and modular multiplication efficiently reduces 797^9 modulo 1111.
3
Reduce the right-hand side 15(mod11)-15 \pmod{11}.
15=2(11)+77(mod11)-15 = -2(11) + 7 \equiv 7 \pmod{11}.
Converting negative numbers into the standard non-negative remainder range [0,10][0, 10].
4
Substitute remainders into the congruence and solve for kk.
8+k7    k78=1(mod11)8 + k \equiv 7 \implies k \equiv 7 - 8 = -1 \pmod{11}.
Linear algebraic rearrangement in modular arithmetic.
5
Convert the negative remainder 1-1 to canonical non-negative form.
k=1+11=10k = -1 + 11 = 10.
The standard remainder must satisfy 0k<110 \leq k < 11.

Key Concept

Modular Exponentiation & Negative Remainder Reduction
Rate this question