Computer Science

Given the function F (a, b, c) = Σ(0, 2, 3, 4, 6). Reduce it using Karnaugh's map.

Boolean Algebra

6 Likes

Answer

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

From Quad (0,2,4,6):
Rows representing the Quad: a' + a = 1
Columns representing the Quad: b'c' + bc' = c'
Term Obtained = c'

From Pair (3,2):
Rows representing the Pair: a'
Columns representing the Pair: bc + bc' = b
Term Obtained = a'b

Result = a'b + c'

Answered By

5 Likes


Related Questions