edited by
15,201 views
54 54 votes

Given the function $F = P' +QR$, where $F$ is a function in three Boolean variables $P, Q$ and $R$ and $P'=!P$, consider the following statements.

$(S1) F = \sum(4, 5, 6)$

$(S2) F = \sum(0, 1, 2, 3, 7)$

$(S3) F = \Pi (4, 5, 6)$

$(S4) F = \Pi (0, 1, 2, 3, 7)$

Which of the following is true?

  1. (S1)-False, (S2)-True, (S3)-True, (S4)-False
  2. (S1)-True, (S2)-False, (S3)-False, (S4)-True
  3. (S1)-False, (S2)-False, (S3)-True, (S4)-True
  4. (S1)-True, (S2)-True, (S3)-False, (S4)-False

7 Answers

Best answer
50 50 votes
$F=P'+QR$,  draw the Kmap for this

We can find the minterm $\sum (0,1,2,3,7)$ and maxterm $\Pi (4,5,6) $

So, option A is correct: $(S1)$-False, $(S2)$-True, $(S3)$-True, $(S4)$-False
edited by
20 20 votes

$F = P{}' + QR$

for SOP we have :

$F = P{}.1.1 + 1.QR'=P{}'(Q+Q{}')(R+R{}') + (P+P{}')QR$

$P{}'QR + P{}'QR{}' +P{}'Q{}'R+P{}'Q{}'R{}'+PQR+P{}'QR$

$P{}'QR + P{}'QR{}' +P{}'Q{}'R+P{}'Q{}'R{}'+PQR$

$F=\sum(0, 1, 2, 3, 7)$ (considering barred terms as 0 and unbarred as 1 and converting them to binary and then to decimal).

now for POS we have :

$F = P{}' + QR = (P{}'+Q)(P{}'+R) = (P{}'+Q+0)(P{}'+R+0)$

$(P{}'+Q+R.R{}')(P{}'+R+Q.Q{}') $

$(P{}'+Q+R)(P{}'+Q+R)(P{}'+Q+R{}')(P{}'+Q{}'+R)$

$(P{}'+Q+R)(P{}'+Q+R{}')(P{}'+Q{}'+R)$

$F=\prod (4, 5, 6)$(considering barred terms as 1 and unbarred as 0 and converting them to binary and then to decimal).

http://mcs.uwsuper.edu/sb/461/PDF/sop.html

edited by
Answer:
Position:
Show:

Related questions

56 56 votes
8 answers 8 answers
32.8k
32.8k views
go_editor asked Feb 15, 2015
32,799 views
The total number of prime implicants of the function $f(w, x, y, z) = \sum (0, 2, 4, 5, 6, 10)$ is __________
55 55 votes
5 answers 5 answers
17.5k
17.5k views
go_editor asked Feb 15, 2015
17,532 views
Consider the equation $(43)_x = (y3)_8$ where $x$ and $y$ are unknown. The number of possible solutions is _____
7 7 votes
4 answers 4 answers
8.3k
8.3k views
go_editor asked Feb 16, 2015
8,313 views
Consider the following software items: Program-$X$, Control Flow Diagram of Program-$Y$ and Control Flow Diagram of Program-$Z$ as shown belowThe values of McCabe's Cyclo...
67 67 votes
5 answers 5 answers
20.4k
20.4k views
go_editor asked Feb 16, 2015
20,380 views
Consider the following C program:#include<stdio.h int f1(void); int f2(void); int f3(void); int x=10; int main() { int x=1; x += f1() + f2 () + f3() + f2(); printf("%d", ...