Difficulty: Easy
Correct Answer: VTRM
Explanation:
Introduction / Context:Here the relation uses the Atbash (mirror) cipher: each letter maps to its symmetric counterpart in the alphabet (A↔Z, B↔Y, C↔X, etc.).
Given Data / Assumptions:
Concept / Approach:For any letter L with numeric value n, its mirror is 27−n. Do this for each letter independently to transform the word.
Step-by-Step Solution:
E(5) → V(22) because 5+22=27.G(7) → T(20) because 7+20=27.I(9) → R(18) because 9+18=27.N(14) → M(13) because 14+13=27.Thus, EGIN → VTRM.Verification / Alternative check:Applying the mirror mapping again to VTRM returns EGIN, showing the mapping is its own inverse.
Why Other Options Are Wrong:
Common Pitfalls:Attempting constant forward/backward shifts; forgetting that Atbash maps A→Z, not A→W.
Final Answer:VTRM
Discussion & Comments