Difficulty: Easy
Correct Answer: 9157592
Explanation:
Introduction / Context:This problem uses a direct letter→digit substitution that must stay consistent across two examples. By extracting a complete mapping for the letters that appear, we can encode a new word unambiguously.
Given Data / Assumptions:
Concept / Approach:Build a map letter→digit from both given encodings and verify consistency. Then transcribe each letter of GEOLOGY using that map.
Step-by-Step Solution:
From GLOSSORY: G=9, L=7, O=5, S=3, R=6, Y=2.From GEOGRAPHY: confirm G=9, add E=1, O=5, R=6, A=8, P=4, H=0, Y=2.Now encode GEOLOGY = G E O L O G Y → 9 1 5 7 5 9 2.Hence the code is 9157592.Verification / Alternative check:Cross-check every letter in GEOLOGY appears in the map and is consistent across both given words (notably G, O, Y are present in both exemplars). No conflict arises.
Why Other Options Are Wrong:
Common Pitfalls:Assuming position-based coding rather than a pure substitution; mixing digits for already-mapped letters; failing to consolidate both exemplars before encoding the target.
Final Answer:9157592
Discussion & Comments