PRASHNIKAप्रश्निका
Back to the paper

Given the Boolean function . Reduce the above expression by using 4-variable Karnaugh map, showing…

Computer Science20235 marksDrawing
Given the Boolean function $F(A,B,C,D) = \Sigma(2, 3, 6, 7, 8, 10, 12, 14, 15)$.
(a)[4.0]
Reduce the above expression by using 4-variable Karnaugh map, showing the various groups (i.e., octal, quads and pairs).
(b)[1.0]
Draw the logic gate diagram for the reduced expression. Assume that the variables and their complements are available as inputs.

Answer

Answer (a)

AI
$F(A,B,C,D) = \Sigma(2, 3, 6, 7, 8, 10, 12, 14, 15)$. Plotting the 1s on a 4-variable K-map (rows AB, columns CD in the order 00, 01, 11, 10):
AB \ CD00011110
000011
010011
111011
101001
Groups: Quad 1 $\{m_2, m_3, m_6, m_7\}$: $A'C$ Quad 2 $\{m_6, m_7, m_{14}, m_{15}\}$: $BC$ Quad 3 $\{m_8, m_{10}, m_{12}, m_{14}\}$: $AD'$ Reduced expression: $F = A'C + BC + AD'$
Boolean Algebra

From ISC 2023 Computer Science Paper 1, question 3(i).