Difficulty: Medium
Correct Answer: 555681
Explanation:
Given data
Concept / Approach
Step-by-step calculation
Last digit condition: 987 ≡ 7 (mod 10). To end with 1, 7N ≡ 1 (mod 10) ⇒ N ≡ 3 (mod 10).Last two digits 81: 987 ≡ −13 (mod 100). Solve −13N ≡ 81 (mod 100) ⇒ 13N ≡ 19 (mod 100).Inverse of 13 mod 100 is 77 (13×77 = 1001 ≡ 1). Thus N ≡ 19×77 ≡ 1463 ≡ 63 (mod 100).Try N = 563 (closest three-digit ending with 63 near the ballpark).Compute: 987 × 563 = 987×500 + 987×60 + 987×3 = 493500 + 59220 + 2961 = 555681.
Verification
Pattern matches 55xy81 with x=5, y=6; the two 9s in 559981 were the incorrect digits.
Common pitfalls
Final Answer
555681
Discussion & Comments