Difficulty: Medium
Correct Answer: M + N - P
Explanation:
Introduction / Context:Coded relations replace kinship words with symbols, and the job is to compose the correct chain that matches the target relationship. Here, “+” is brother-of, “−” is wife-of, and “*” is mother-of. We seek an expression meaning “M is the brother-in-law of P,” i.e., M is either (1) the brother of P’s spouse, or (2) the husband of P’s sister. We will test each option against the symbol legend and semantics.
Given Data / Assumptions:
Concept / Approach:Translate each candidate string from left to right into words and see if it implies “M is P’s brother-in-law.” Watch out for gender mismatches: “wife-of” and “mother-of” force the subject to be female, which cannot describe M if M must be a brother-in-law (male).
Step-by-Step Solution:
Option (a) M − N + P → M is the wife of N; N is the brother of P. M is female here, so cannot be “brother-in-law.” Reject.Option (b) M + N − P → M is the brother of N; N is the wife of P. If N is P’s wife, then M is the brother of P’s spouse ⇒ M is P’s brother-in-law. Fits perfectly.Option (c) M * N + P → M is the mother of N; N is the brother of P. M is female, so not brother-in-law. Reject.Option (d) M − P * N → M is the wife of P; P is the mother of N. This even makes P female; inconsistent and does not yield M as P’s brother-in-law. Reject.Verification / Alternative check:The only path that creates “brother of P’s spouse” with M male is option (b). The other patterns either force M to be female or break the intended in-law link.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
M + N - P
Discussion & Comments