Computer Science

Write max term expression corresponding to the following truth table:

ABCD (Output)
0000
0010
0100
0111
1000
1011
1101
1111

Boolean Algebra

8 Likes

Answer

ABCD
(Output)
Max
Terms
Max Term
Designation
0000A+B+CM0
0010A+B+C'M1
0100A+B'+CM2
0111
1000A'+B+CM4
1011
1101
1111

Max term expression for D = (A+B+C).(A+B+C').(A+B'+C).(A'+B+C)

Max term expression in cardinal form:
F(A, B, C) = π(0, 1, 2, 4)

Answered By

4 Likes


Related Questions