Question 1
Consider the statement:
"Either p: She lives in Mumbai OR q: She lives in Delhi, but NOT both"
If p is True and q is False, is this statement true?
Step 1: Understand Exclusive OR (XOR)
Exclusive OR (p ⊕ q) is True when EXACTLY ONE of p or q is True.
It is False when both are True or both are False.
Truth table for p ⊕ q:
p=T, q=T → Result=F (both true)
p=T, q=F → Result=T (exactly one)
p=F, q=T → Result=T (exactly one)
p=F, q=F → Result=F (neither true)
Step 2: Apply the given values
p = True, q = False
Step 3: Evaluate the exclusive OR
Since exactly one of p or q is True, the exclusive OR is True
Exclusive OR (p ⊕ q) is True when EXACTLY ONE of p or q is True.
It is False when both are True or both are False.
Truth table for p ⊕ q:
p=T, q=T → Result=F (both true)
p=T, q=F → Result=T (exactly one)
p=F, q=T → Result=T (exactly one)
p=F, q=F → Result=F (neither true)
Step 2: Apply the given values
p = True, q = False
Step 3: Evaluate the exclusive OR
Since exactly one of p or q is True, the exclusive OR is True