Difficulty: Easy
Correct Answer: 80-9
Explanation:
Introduction / Context:Another common numeric classification relies on perfect squares. When a pair is presented as (A, B), many items use the rule B = sqrt(A). Fast recognition of perfect squares saves time and reduces errors in competitive tests. Your task is to detect the pair that fails to meet this square root relation.
Given Data / Assumptions:
Concept / Approach:Compute the square of the second number for each pair and compare it to the first. If A equals B^2, the pair fits. Otherwise, it is the exception. Memorizing squares up to 20 accelerates this process.
Step-by-Step Solution:
64-8 → 8^2 = 64 (fits).36-6 → 6^2 = 36 (fits).49-7 → 7^2 = 49 (fits).80-9 → 9^2 = 81 (does not equal 80; fails).Verification / Alternative check:Reverse check by taking sqrt(64)=8, sqrt(36)=6, sqrt(49)=7. For 80, the square root is not an integer (approximately 8.944...). Therefore, 80-9 is not a perfect square pair.
Why Other Options Are Wrong:
64-8, 36-6, and 49-7 are perfect square relations.Common Pitfalls:Rounding errors or estimating roots without confirming. Always verify by squaring the second number to see if it exactly equals the first.
Final Answer:80-9
Discussion & Comments