KnowledgeBoat Logo

Computer Science

Reduce the following boolean function with the help of Karnaugh's map:

F (A, B, C, D) =Σ (0, 1, 2, 3, 12, 13, 14, 15)

Boolean Algebra

16 Likes

Answer

Karnaugh map for Understanding ISC Computer Science Boolean Algebra Chapter 1 Unit 2 Question 7b Solution

From Quad (0,1,3,2):
Rows representing the quad: A'B'
Columns representing the quad: 1 (Both variables C and D are in opposite form. Hence, they get cancelled.)
Term Obtained = A'B'

From quad (12,13,15,14):
Rows representing the quad: AB
Columns representing the quad: 1 (Both variables C and D are in opposite form. Hence, they get cancelled.)
Term Obtained = AB

Simplified expression = AB + A'B'

Answered By

7 Likes


Related Questions