In the code below, “+” means “is the brother of”, “−” means “is the wife of”, and “*” means “is the mother of”. Which expression correctly represents “M is the brother-in-law of P”?

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:

  • A + B → A is the brother of B (A is male).
  • A − B → A is the wife of B (A is female).
  • A * B → A is the mother of B (A is female).
  • “Brother-in-law of P” requires M to be male and related via spouse’s sibling or sibling’s spouse.


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:

  • (a), (c), (d) set M or P genders inconsistently with “brother-in-law.”
  • None of these is unnecessary because (b) already satisfies the requirement.


Common Pitfalls:

  • Reading from right to left; here the natural read is left to right.
  • Overlooking the gender constraints implied by “wife” and “mother.”


Final Answer:

M + N - P

More Questions from Blood Relation Test

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion