KnowledgeBoat Logo

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

11 Likes

Answer

ABCOutputMin Terms
0000
0010
0100
0111A'BC
1000
1011AB'C
1101ABC'
1111ABC

SOP expression for F (A, B, C):
A'BC + AB'C + ABC' + ABC

Answered By

6 Likes


Related Questions