Monday, January 19, 2015
Logic Circuits: 3-bit K-Map (Karnaugh Map) problem #2
Simplify the following function using K-map: F(A,B,C) = Σ(0,2,3,7)Solution:
We need to list the variables. For the first term (red group), A has two 0's, B has one 0 and one 1, and C has two 0's. For the second term (green group), A has one 0 and one 1, B has two 1's, and C has two 1's as well.
F = (A' + A') (B' + B) (C' + C') + (A' + A) (B + B) (C + C)
Boolean Algebra Theorems state that x'+x'=x', x+x=x, x'+x=1
= (A' ∙ 1 ∙ C') + 1 ∙ B ∙ C
F = (A' ∙ C) + (B ∙ C)
-------------------------------------------------------------
Ask a question or comment on this solution below.
Subscribe to:
Post Comments
(
Atom
)
No comments :
Post a Comment