edited by
13,444 views
46 46 votes

The following propositional statement is  $\left(P \implies \left(Q \vee R\right)\right) \implies \left(\left(P \wedge Q \right)\implies R\right)$

  1.    satisfiable but not valid
  2.    valid
  3.    a contradiction
  4.    None of the above

5 Answers

Best answer
51 51 votes
Answer a

It is false when P = T, Q = T, R = F and hence cannot be valid.

It is true (satisfiable) when P = T, Q = T, R = T
edited by
11 11 votes
Given statement  $(P \Rightarrow (Q \vee R)) \Rightarrow ((P \wedge Q) \Rightarrow R)$ can be simplified as follows

  $ \equiv (\neg P \vee (Q \vee R) ) \Rightarrow (\neg (P \wedge Q) \vee R) \\ \equiv (\neg P \vee R \vee Q ) \Rightarrow (\neg P \vee \neg Q \vee R) \\ \equiv ((\neg P \vee R )\vee Q ) \Rightarrow ((\neg P \vee R) \vee \neg Q)  \\ $

Let $(\neg P \vee R ) = A $, then $(A \vee Q ) \Rightarrow (A \vee \neg Q) $  [simplifying this further]

$ \neg(A \vee Q ) \vee (A \vee \neg Q) $

$ (\neg A \wedge \neg Q)  \vee (A \vee \neg Q) $

$[(\neg A \wedge \neg Q)  \vee A] \vee \neg Q $     [As, $ X \vee (\neg X \wedge Y) = X \vee Y  $ ]

$  (\neg Q \vee A) \vee \neg Q $

$  (\neg Q \vee A) $

$  (\neg Q \vee (\neg P \vee R ) ) $

For $Q=F$, result is True

For $Q=T, P=T, R=F$, result is False

Hence, Satisfiable(true atleast once) but not valid
edited by
6 6 votes

Check for validity by making given implication $false$

Option $\large A$


 THE BELOW ANSWER IS WRONG


By  Exportation Law,

$P \implies Q \implies R \equiv (P\land Q ) \implies R$

applying it to given proposition

$\left(P \implies \left(Q \vee R\right)\right) \implies \left(\left(P \wedge Q \right)\implies R\right) \equiv \left( P \land \left( Q \lor R\right) \land \left( P \land Q\right)  \implies R \right)$

checking validity first

 

edited by
2 2 votes
Applying by case method,

case: Let P = T,

(Q V R) → (Q → R)

(Q V R) → (Q’ V R)

(Q V R)’ + (Q’ V R)

Q’R’ + Q’ + R

Q’(1+R’) + R = Q’+R

Here, Q’+R is satisfiable but not valid.
Answer:
Position:
Show:

Related questions

133 133 votes
9 answers 9 answers
298k
298k views
Kathleen asked Sep 18, 2014
297,732 views
Identify the correct translation into logical notation of the following assertion.Some boys in the class are taller than all the girlsNote: $\text{taller} (x, y)$ is true...
50 50 votes
10 answers 10 answers
19.3k
19.3k views
Ishrat Jahan asked Nov 2, 2014
19,272 views
Let $p, q, r$ and $s$ be four primitive statements. Consider the following arguments:$P: [(¬p\vee q) ∧ (r → s) ∧ (p \vee r)] → (¬s → q)$$Q: [(¬p ∧q) ∧ [q → (p → r)]] ...
91 91 votes
13 answers 13 answers
34.4k
34.4k views
go_editor asked Apr 24, 2016
34,424 views
Consider three IP networks $A, B$ and $C$. Host $H_A$ in network $A$ sends messages each containing $180$ $bytes$ of application data to a host $H_C$ in network $C$. The ...
80 80 votes
6 answers 6 answers
30.0k
30.0k views
go_editor asked Apr 24, 2016
30,032 views
Consider the following program segment for a hypothetical CPU having three user registers $R_1, R_2$ and $R_3.$$$ \begin{array}{|l|l|c|} \hline \text{Instruction} & \text...