Difficulty: Easy
Correct Answer: 11th
Explanation:
Introduction / Context:We are intersecting two open intervals described in words. One memory gives (8, 12), the other gives (10, 15). The definite day is their intersection.
Given Data / Assumptions:
Concept / Approach:Compute the set intersection of the two candidate sets.
Step-by-Step Solution:
Set A = {9, 10, 11}.Set B = {11, 12, 13, 14}.A ∩ B = {11}.Verification / Alternative check:Check boundary words carefully: “after” excludes the boundary day; “before” also excludes the boundary. That is why 8 and 12 are excluded from Meeta's set, and 10 and 15 from the brother's set.
Why Other Options Are Wrong:
Common Pitfalls:Including endpoints despite the word “after/before”; treating “between” inclusive. Read quantifiers precisely.
Final Answer:11th
Discussion & Comments