Computer Science
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.
Boolean Algebra
9 Likes
Answer
A | B | C | D | R | Min Terms |
---|---|---|---|---|---|
0 | 0 | 0 | 0 | 0 | |
0 | 0 | 0 | 1 | 0 | |
0 | 0 | 1 | 0 | 0 | |
0 | 0 | 1 | 1 | 1 | A'B'CD |
0 | 1 | 0 | 0 | 0 | |
0 | 1 | 0 | 1 | 0 | |
0 | 1 | 1 | 0 | 0 | |
0 | 1 | 1 | 1 | 1 | A'BCD |
1 | 0 | 0 | 0 | 0 | |
1 | 0 | 0 | 1 | 0 | |
1 | 0 | 1 | 0 | 0 | |
1 | 0 | 1 | 1 | 1 | AB'CD |
1 | 1 | 0 | 0 | 0 | |
1 | 1 | 0 | 1 | 1 | ABC'D |
1 | 1 | 1 | 0 | 0 | |
1 | 1 | 1 | 1 | 1 | ABCD |
SOP expression:
A'B'CD + A'BCD + AB'CD + ABC'D + ABCD
K-Map to reduce the expression:
From Quad (3,7,15,11):
Rows representing the Quad: 1 (Both variables A and B are in opposite form. Hence, they get cancelled.)
Columns representing the Quad: CD
Term Obtained = CD
From Pair (13,15):
Rows representing the Pair: AB
Columns representing the Pair: C'D + CD = D
Term Obtained = ABD
Result = ABD + CD
Answered By
4 Likes
Related Questions
State the two absorption laws of boolean algebra. Verify any one of them using the truth table.
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.
Convert the following function into its canonical sum of product form:
F(X, Y, Z) = Σ(0,1,5,7)Given the function F (a, b, c) = Σ(0, 2, 3, 4, 6). Reduce it using Karnaugh's map.