Disjunctive Normal form to Combinatorial Circuit

Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
3 replies · 3K views
Kingyou123
Messages
98
Reaction score
0

Homework Statement


Draw the combinatorial circuit corresponding to the disjunctive normal form.
2.PNG

Homework Equations


DNF of f(x,y,z)=xyz+Not(xy)z

The Attempt at a Solution


f(x,y,z)=xyz+not(xy)z
=z(xy+not(xy))
Wouldn't the xy and not xy cancel out? That's my current problem with this probelm.
 
Physics news on Phys.org
The problem is that your DNF is not correct. Presumably the first term is supposed to give the 1 in the second row of the last column. But z is 0 in that row. So why are none of x,y,z negated in the term?
Your second term is not correct either. Are you aware that not(xy) is not the same as not(x)not(y)? de Morgan's Laws can sort that out for you.
 
andrewkirk said:
The problem is that your DNF is not correct. Presumably the first term is supposed to give the 1 in the second row of the last column. But z is 0 in that row. So why are none of x,y,z negated in the term?
Your second term is not correct either. Are you aware that not(xy) is not the same as not(x)not(y)? de Morgan's Laws can sort that out for you.
Oh thank you for catching my mistake, I was looking at row 0 for some reason.
So I'm left with xynot(z) + not(x)not(y)z, wouldn't everything just cancel out?