Computer Science
Draw the truth table for the logical function M for three inputs A, B and C, where M = F (A, B, C). The output is 0 (zero), if the majority of inputs are zero (0) and one (1) if the majority of inputs are one (1). Write the sum of products expression (SOP) for M.
Boolean Algebra
9 Likes
Answer
A | B | C | Output | Min Terms |
---|---|---|---|---|
0 | 0 | 0 | 0 | |
0 | 0 | 1 | 0 | |
0 | 1 | 0 | 0 | |
0 | 1 | 1 | 1 | A'BC |
1 | 0 | 0 | 0 | |
1 | 0 | 1 | 1 | AB'C |
1 | 1 | 0 | 1 | ABC' |
1 | 1 | 1 | 1 | ABC |
SOP expression for F (A, B, C):
A'BC + AB'C + ABC' + ABC
Answered By
5 Likes
Related Questions
Draw the truth table for the following boolean function:
F (A, B, C)=(A'+B).(B'+C)Write max term expression corresponding to the following truth table:
A B C D (Output) 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 1 1 0 0 0 1 0 1 1 1 1 0 1 1 1 1 1 Reduce the following boolean function with the help of Karnaugh's map:
F (a, b, c, d) =Σ (0, 1, 2, 4, 5, 6, 8, 9, 12, 13, 14)
Write the SOP expression corresponding to the following truth table:
A B C D (Output) 0 0 0 0 0 0 1 1 0 1 0 0 0 1 1 1 1 0 0 0 1 0 1 1 1 1 0 0 1 1 1 1