recategorized by
2,164 views
13 votes
13 votes

A Boolean formula is said to be a $tautology$ if it evaluates to TRUE for all assignments to its variables. Which one of the following is NOT a tautology?

  1. $(( p \vee q) \wedge (r \vee s)) \Rightarrow (( p \wedge r) \vee q \vee s)$
  2. $(( p \vee q ) \wedge ( r \vee s)) \Rightarrow (q \vee s)$
  3. $(( p \vee q ) \wedge ( r \vee s)) \Rightarrow ( r \vee q \vee s)$
  4. $(( p \vee q ) \wedge ( r \vee s)) \Rightarrow ( p \vee q \vee s)$
  5. $(( p \vee q ) \wedge ( r \vee s)) \Rightarrow ( p \vee q)$
recategorized by

5 Answers

0 votes
0 votes
in B) option if we try with value as p=1, r=1 , q=s=0;

then LHS evaluates to 1 and RHS evaluates to 0
There ans is B.
Answer:

Related questions

23 votes
23 votes
4 answers
1