The Art of Logical Deconstruction
I know, looking at this expression feels like staring into a storm of symbols: ((p∧q)⇒(r∨q))∧((p∧r)⇒q). It is easy to feel overwhelmed, but in the world of JEE logic, complexity is often just a mask for simplicity.
The secret is to never fight the whole monster at once. Instead, we break it down into manageable pieces.
The First Act
Taming the Implication
Our first step is to recognize the structure. We have two major components joined by an 'AND' (∧) operator. Let's call them P1 and P2.
Our goal is to find the values of r that make the entire expression a tautology—a statement that is true under every possible combination of truth values for p,q, and r.
Before we touch the algebra, we must wield our most powerful tool: the implication rule. The statement A⇒B is logically equivalent to ∼A∨B.
This is the bridge that turns complex arrows into simple 'OR' (∨) statements. Let's apply this to P1=(p∧q)⇒(r∨q).
Using the rule, P1 becomes ∼(p∧q)∨(r∨q). Now, we invoke De Morgan's Law. The negation of the conjunction (p∧q) becomes the disjunction of the negations: ∼p∨∼q.
So, P1 simplifies to ∼p∨∼q∨r∨q. Look closely at the terms ∼q and q.
Since everything is connected by 'OR', we can group them: ∼p∨r∨(∼q∨q). Because ∼q∨q is always True, the entire expression P1 becomes a tautology. It is always True, regardless of p,q, or r!
The Second Act
The Search for Truth
Since P1 is always True, our original expression P1∧P2 simplifies beautifully to T∧P2, which is just P2. Now, the entire problem rests on P2=(p∧r)⇒q.
We apply the same logic:
P2≡∼(p∧r)∨q
Again, using De Morgan's Law, we get:
P2≡∼p∨∼r∨q
This is our battlefield. We need to test our four candidates for
r:
p,q,∼p, and
∼q.
Evaluating the Candidates
1. Case r=p: Substituting this into P2, we get ∼p∨∼p∨q, which simplifies to ∼p∨q. This is not a tautology because it depends on the values of p and q.
2. Case r=q: Substituting this, we get ∼p∨∼q∨q. Since ∼q∨q is True, the whole expression becomes ∼p∨T, which is True. Success! This is a valid value.
3. Case r=∼p: Substituting this, we get ∼p∨∼(∼p)∨q. The double negation ∼(∼p) is just p. So we have ∼p∨p∨q. Since ∼p∨p is True, the expression is True. Another success!
4. Case r=∼q: Substituting this, we get ∼p∨∼(∼q)∨q, which simplifies to ∼p∨q∨q, or ∼p∨q. Like the first case, this is not a tautology.
The Final Verdict
By systematically testing each candidate, we found that only r=q and r=∼p make the expression a tautology. That gives us exactly 2 valid values.
Logic is not about memorizing truth tables; it is about seeing the underlying structure and simplifying it until the truth reveals itself. Keep practicing this, and you will find that even the most intimidating problems have a simple, elegant core.