0
7.9kviews
Minimize the following expression using K-map also Implement the circuit using minimum number of gates.

$Y = ∑ m(1,2,9,10,14,15)$

Subject: Logic Design

Topic: BOOLEAN ALGEBRA AND LOGIC GATES

Difficulty: Medium

1 Answer
1
588views

enter image description here

Minimised Expression

$Y = \overline{B}\hspace{0.1cm}\overline{C}D + \overline{B}C\overline{D}+AC$

$= \overline{B} \underbrace{(\overline{C}D+C\overline{D})} + AC$

$\hspace{1cm} EX-OR \hspace{0.2cm} gate$

$Y = \overline{B}(C \otimes D)+AC$

enter image description here

Please log in to add an answer.