6,816 views
5 votes
5 votes
Suppose, $f(A,B,C,D) = \sum m(0,2,4,6)$ is a boolean expression, expressed in minterm form. How can I calculate and express the dual of the function?

I have tried the method using the exact definition, but it turns out to be very cumbersome and prone to errors. Any other method?

1 Answer

Best answer
17 votes
17 votes

$f(A,B,C,D)=\Sigma m(0,2,4,6)$

$f(A,B,C,D)= A'B'C'D'+A'B'CD'+A'BC'D'+A'BCD'$

Dual of $f$, 

$f_d(A,B,C,D)= (A'+B'+C'+D').(A'+B'+C+D').(A'+B+C'+D').(A'+B+C+D')$

$= M_{15}.M_{13}.M_{11}.M_9$

$=\Pi M(9,11,13,15)$

$= \Sigma m(0,1,2,3,4,5,6,7,8,10,12,14)$

That's it.

Note:

In Dual of $f$, that is $f_d$, we replace AND $(.)$ by OR $(+)$, OR $(+)$ by AND $(.)$, $0$ by $1$ and $1$ by $0$ ONLY.

In Complement of $f$, that is $f'$, we need to replace all variable, say $x$ , by it complement variables , say $x'$, also.

selected by

Related questions

7 votes
7 votes
3 answers
2
shreshtha5 asked Nov 29, 2015
8,237 views
Dual of EX-OR is equal to(A) NAND(B) NOR(C) EX-NOR(D) None of these
2 votes
2 votes
4 answers
3
shikharV asked Dec 4, 2015
4,809 views
Given answer: DI am not getting how to approach this question.
0 votes
0 votes
3 answers
4
TINA asked Sep 17, 2018
5,901 views
What is the dual of A+A'B=A+B