edited by
2,211 views
27 votes
27 votes

A Boolean expression is an expression made out of propositional letters (such as $p, q, r$) and operators $\wedge$, $\vee$ and $\neg$; e.g. $p\wedge \neg (q \vee \neg r)$. An expression is said to be in sum of product form (also called disjunctive normal form) if all $\neg$ occur just before letters and no $\vee$ occurs in scope of $\wedge$; e.g. $(p\wedge \neg q) \vee (\neg p \wedge q)$. The expression is said to be in product of sum form (also called conjunctive normal form) if all negations occur just before letters and no $\wedge$ occurs in the scope of $\vee$; e.g. $(p\vee \neg q) \wedge (\neg p \vee q)$. Which of the following is not correct?

  1. Every Boolean expression is equivalent to an expression in sum of product form.
  2. Every Boolean expression is equivalent to an expression in product of sum form.
  3. Every Boolean expression is equivalent to an expression without $\vee$ operator.
  4. Every Boolean expression is equivalent to an expression without $\wedge$ operator.
  5. Every Boolean expression is equivalent to an expression without $\neg$ operator.
edited by

2 Answers

Best answer
37 votes
37 votes

Answer will be (E)

a) True. Every expression can be written in SOP form

b) True. Every expression can be written in POS form

c)True. We can write OR in the form of AND. e.g.(A+B)=not(not(A) . not(B))

d)True.We can write AND in the form of OR e.g. (A .B)=not(not(A) + not(B))

(e)False. We cannot convert NOT gate to any other gate. We cannot also get NAND , NOR such universal gate without NOT gate. So, without NOT gate we cannot get every boolean expression

selected by
30 votes
30 votes
Basically they are saying all the same thing as what we have see. for ex just simplify this. use  and operator ( . ) for ^ . so sop will become $(p.q') + (p'.q)$

So, no meaning have been changed and we can move further with all the boolean logic we have read.

We know every expression can be expressed in pos or sop form so, $1$ and $2$ are true.

We know that AND and NOT are functionally complete. so any expression can be expressed using these two only. so all the expression can be expresed in a form which does not contain OR but contain and and not,
with the same logic point $4$ will be true because we know not and OR are also functionally complete.

But without NOT we can't get a functionally complete gate. so E is wrong.
edited by
Answer:

Related questions