Question

Difficulty: MediumRemainders and Units Digit Cyclicity

When the integer N=443+943N = 4^{43} + 9^{43} is divided by 77, what is the remainder?

Answer: 6

Answer

The remainder when N=443+943N = 4^{43} + 9^{43} is divided by 77 is 66.
Reducing 9(mod7)9 \pmod 7 yields 22, allowing NN to be expressed as 286+243(mod7)2^{86} + 2^{43} \pmod 7. The powers of 2(mod7)2 \pmod 7 repeat every 3 powers (2,4,1)(2, 4, 1). Reducing the exponents 8686 and 4343 modulo 3 gives remainders of 22 and 11, corresponding to values of 44 and 22. Their sum 4+2=64 + 2 = 6 is the final remainder.

Step-by-Step Solution

1
Simplify the base modulo 7 and express in powers of 2
92(mod7)9 \equiv 2 \pmod 7, so N=443+943286+243(mod7)N = 4^{43} + 9^{43} \equiv 2^{86} + 2^{43} \pmod 7.
Reducing bases modulo 7 simplifies calculating large exponents.
2
Determine the remainder cyclicity of powers of 2 modulo 7
The cycle length is 3 with pattern (2,4,1)(2, 4, 1), because 2122^1 \equiv 2, 2242^2 \equiv 4, and 231(mod7)2^3 \equiv 1 \pmod 7.
Powers of integers modulo a divisor repeat periodically.
3
Evaluate each term using the exponent modulo the cycle length
862(mod3)    28622=4(mod7)86 \equiv 2 \pmod 3 \implies 2^{86} \equiv 2^2 = 4 \pmod 7, and 431(mod3)    24321=2(mod7)43 \equiv 1 \pmod 3 \implies 2^{43} \equiv 2^1 = 2 \pmod 7.
The position in the cyclicity sequence is dictated by the exponent modulo the period length.
4
Add the individual remainders
4+2=6(mod7)4 + 2 = 6 \pmod 7.
The remainder of a sum equals the sum of the individual remainders.

Key Concept

Modular arithmetic cyclicity of powers and addition of remainders
Rate this question