1 1 vote The minimum number of two input NOR gates required to implement the simplified expression of the following function are $\qquad$ $\mathrm{f}(\mathrm{A}, \mathrm{B}, \mathrm{C}, \mathrm{D})=\Sigma \mathrm{m}(0,2,6,10,14)$ One Two Three Four Digital Logic test-series minimum-number-of-gates digital-logic + – sidlewis 844 views answer comment Share Follow Print See all 5 Comments 5 5 Comments reply MiNiPanda commented Sep 2, 2018 reply Follow flag Is it C? 0 0 replyShare sidlewis commented Sep 2, 2018 reply Follow flag Yes please tell in detail 0 0 replyShare MiNiPanda commented Sep 2, 2018 reply Follow flag We should know that an expression in POS form is always easier to be realized by NOR gates. Given is the SOP ∑m(0,2,6,10,14) so we should convert it to POS. Hence piM(1,3,4,5,7,8,9,11,12,13,15) [I couldn't find the "pi" symbol :P] So the expression is D'.(B'+C).(A'+C) Now we have to convert this expression in such a way that we can realize it with NOR ( ( D'.(B'+C).(A'+C) )' )' = ( (D')' + (B'+C)' + (A'+C)' )' = (D + BC' + AC' )' = (D + C'(A+B) )' = ( D + ( ( C'(A+B) )' )' )' = (D + ( (C')' + (A+B)' )' )' = (D + ( C + (A+B)' )' )' X=(A+B)' --> 1 NOR Y=(C+ X)' --> 1 NOR (D+Y)' --> 1 NOR 0 0 replyShare Shaik Masthan commented Sep 2, 2018 reply Follow flag By k-map, SOP format ===> CD' + A' B' D' ===> D' (C+A'B') ==> D' . ( C + (A+B)' ) ===> ( D + ( C + (A+B)' )' ) ' TOTAL = 3 NOR GATES 2 2 replyShare MiNiPanda commented Sep 2, 2018 reply Follow flag Yeah.. Shaik's one is faster.. usually converting to POS works better..but in this case it's not 0 0 replyShare Please log in or register to add a comment.
0 0 votes 3 nor gates is the ans right? pikachu9 answered Jun 23 pikachu9 comment Share Follow 0 reply Please log in or register to add a comment.