Question

Difficulty: Very hardProperties of Integers and Divisibility

When the positive integer nn is divided by 7, the remainder is 3, and when nn is divided by 11, the remainder is 5. If nn is a three-digit integer less than 200 that is divisible by 6, what is the value of nn?

Answer: 192

Answer

The value of nn is 192.
To find nn, combine the remainder requirements n3(mod7)n \equiv 3 \pmod 7 and n5(mod11)n \equiv 5 \pmod{11}. The smallest positive integer solution is 3838. Because lcm(7,11)=77\text{lcm}(7, 11) = 77, all valid integers take the form n=77m+38n = 77m + 38. Restricting nn to three-digit numbers less than 200 gives candidates n=115n = 115 (m=1m=1) and n=192n = 192 (m=2m=2). Among these, only 192 is divisible by 6 (since 192=6×32192 = 6 \times 32).

Step-by-Step Solution

1
Formulate remainder congruences for the given conditions
n3(mod7)n \equiv 3 \pmod{7} and n5(mod11)n \equiv 5 \pmod{11}
Dividing nn by 7 leaves remainder 3, and dividing by 11 leaves remainder 5.
2
Find the smallest positive integer satisfying both congruences
n=38n = 38
Checking values 11k+511k + 5: 5,16,27,385, 16, 27, 38. 38÷7=538 \div 7 = 5 remainder 3, so 38 satisfies both conditions.
3
Determine the general solution for nn using the Chinese Remainder Theorem logic
n=77m+38n = 77m + 38 for integer m0m \ge 0
Since 7 and 11 are coprime, the solutions repeat every lcm(7,11)=77\text{lcm}(7, 11) = 77.
4
Evaluate candidate values for nn such that 100n<200100 \le n < 200
For m=1m=1, n=115n = 115; for m=2m=2, n=192n = 192
These are the only three-digit integers less than 200 of the form 77m+3877m + 38.
5
Apply the final constraint that nn must be divisible by 6
192192 is divisible by 6 (192=6×32192 = 6 \times 32)
115115 is odd, so it is not divisible by 6. 192192 is even and the sum of its digits (1+9+2=121+9+2=12) is a multiple of 3, so it is divisible by 6.

Key Concept

Simultaneous congruences and combined divisibility rules (Chinese Remainder Theorem)
Estimated Time:2m 0s
Rate this question