Difficulty: Easy
Correct Answer: 16
Explanation:
Introduction / Context:We test a simple affine recurrence that fits almost all steps: multiply by 2 and subtract 2.
Given Data / Assumptions:
Concept / Approach:Check each transition under the rule and locate the earliest violation.
Step-by-Step Solution:
5 → 8: 2*5 − 2 = 8 ✔8 → 16: 2*8 − 2 = 14 ✖ (given 16)If we correct to 14, then 14 → 26: 2*14 − 2 = 26 ✔26 → 50: 2*26 − 2 = 50 ✔50 → 98: 2*50 − 2 = 98 ✔98 → 194: 2*98 − 2 = 194 ✔Verification / Alternative check:Only the second step fails; fixing 16 to 14 repairs the entire tail perfectly.
Why Other Options Are Wrong:26, 50, and 98 all satisfy the rule when the earlier misprint is corrected.
Common Pitfalls:Mistaking downstream consistency for independent correctness; the first inconsistency typically identifies the wrong term.
Final Answer:16 is the wrong term (should be 14).
Discussion & Comments