Computer Science
Given below is the truth table for a combinational circuit for which the input is a 3 bit number and output is its 2's complement.
Inputs | Outputs | ||||
---|---|---|---|---|---|
X | Y | Z | P | Q | R |
0 | 0 | 0 | 0 | 0 | 0 |
0 | 0 | 1 | 1 | 1 | 1 |
0 | 1 | 0 | 1 | 1 | 0 |
0 | 1 | 1 | 1 | 0 | 1 |
1 | 0 | 0 | 1 | 0 | 0 |
1 | 0 | 1 | 0 | 1 | 1 |
1 | 1 | 0 | 0 | 1 | 0 |
1 | 1 | 1 | 0 | 0 | 1 |
Write SOP expression for the outputs P, Q and R. Reduce them, if possible, using the Karnaugh's map.
Boolean Algebra
4 Likes
Answer
Min Terms | |||
---|---|---|---|
P | Q | R | |
X'Y'Z | X'Y'Z | X'Y'Z | |
X'YZ' | X'YZ' | ||
X'YZ | X'YZ | ||
XY'Z' | |||
XY'Z | XY'Z | ||
XYZ' | |||
XYZ |
SOP for P:
X'Y'Z + X'YZ' + X'YZ + XY'Z'
SOP for Q:
X'Y'Z + X'YZ' + XY'Z + XYZ'
SOP for R:
X'Y'Z + X'YZ + XY'Z + XYZ
K-Map for P:
From Pair (1,3):
Rows representing the Pair: X'
Columns representing the Pair: Y'Z + YZ = Z
Term Obtained = X'Z
From Pair (3,2):
Rows representing the Pair: X'
Columns representing the Pair: YZ + YZ' = Y
Term Obtained = X'Y
From (4):
Rows representing (4): X
Columns representing (4): Y'Z'
Term Obtained = XY'Z'
Reduced Expression for P = XY'Z' + X'Y + X'Z
K-Map for Q:
From Pair (1,5):
Rows representing the Pair: X' + X = 1
Columns representing the Pair: Y'Z
Term Obtained = Y'Z
From Pair (2,6):
Rows representing the Pair: X' + X = 1
Columns representing the Pair: YZ'
Term Obtained = YZ'
Reduced Expression for Q = Y'Z + YZ'
K-Map for R:
From Quad (1,3,5,7):
Rows representing the Quad: X' + X = 1
Columns representing the Quad: Y'Z + YZ = Z
Term Obtained = Z
Reduced Expression for R = Z
Answered By
2 Likes
Related Questions
State the two absorption laws of boolean algebra. Verify any one of them using the truth table.
Show that dual of P'QR' + PQ'R + P'Q'R is equal to the complement of PQ'R + Q.(P'R' + PR')
A factory needs a minimum of 1200 tons of raw material and at least 100 workers to start its production. There are three suppliers each agreed to supply 600, 800 and 1250 tons of raw materials respectively.
A=1 if the first supplier supplies else it is 0.
B=1 if the second supplier supplies else it is 0.
C=1 if the third supplier supplies else it is 0.
D=1 if 100 workers are available else it is 0.
R=1 if production starts else it is 0.
(a) Taking A, B, C and D as inputs and R as output draw truth table for the problem stated above and derive its SOP expression.
(b) Reduce the above SOP expression using the K-map.Convert the following function into its canonical sum of product form:
F(X, Y, Z) = Σ(0,1,5,7)