Difficulty: Easy
Correct Answer: 143
Explanation:
Introduction / Context:
Divisibility rules are quick tools for classification. A number is divisible by 3 if and only if the sum of its digits is divisible by 3. Here, three numbers satisfy this rule; one does not. Identify the non-multiple of 3.
Given Data / Assumptions:
Concept / Approach:
Compute the sum of digits for each number and test whether that sum is a multiple of 3. This avoids longer division and works reliably for base-10 integers.
Step-by-Step Solution:
Verification / Alternative check:
Direct division: 15/3 = 5, 63/3 = 21, 195/3 = 65 are integers, while 143/3 is not an integer. Hence 143 fails the test.
Why Other Options Are Wrong:
They are multiples of 3 and thus do not satisfy the condition of being the non-multiple.
Common Pitfalls:
Assuming that numbers ending in 5 are not divisible by 3; 195 is divisible by 3 because its digit sum is 15. Always use the digit-sum test.
Final Answer:
143 is not divisible by 3 and is the odd number.
Discussion & Comments