KnowledgeBoat Logo

Computer Science

Given the boolean function F(x, y, z)=Σ(0, 2, 4, 5, 6). Reduce it using Karnaugh's map.

Boolean Algebra

16 Likes

Answer

Karnaugh map Boolean Algebra Unit 2 Understanding ISC Computer Science Question 36 Solution

From Quad (0,2,4,6):
Rows representing the Quad: x' + x = 1
Columns representing the Quad: y'z' + yz' = z'
Term Obtained = z'

From Pair (4,5):
Rows representing the Pair: x
Columns representing the Pair: y'z' + y'z = y'
Term Obtained = xy'

Result = xy' + z'

Answered By

14 Likes


Related Questions