문제

What to do zero minterm in Quine-McCluskey algorithm? e.g. Sigma (0,1,3) is the input Then do we have to ignore first zero minterm while finding prime implicants or we don't care about zero.? i.e. it's not included in output?

도움이 되었습니까?

해결책

The minterms are numbered starting with Zero. In other words, if you have two inputs in your truth table then the four minterms are numbered 0,1,2,3.

A B | X
----|----
0 0 | 0    m0
0 1 | 1    m1
1 0 | 1    m2
1 1 | 1    m3
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top