Quine-McCluskey Method Part -1
Quine-McCluskey Method
Quine-McCluskey (Tabulation) Method is an alternative method to replace Karnaugh-Map(K-maps). When there are more than 6 variables, K-maps are not efficient to minimized standard from Boolean function. However, for functions with more than six variables, it becomes very difficult to visualize how the minterms should be combined into subcubes. In addition, the K-map algorithm is not as straight forward to program the computer with. There exist a tabulation method called the Quine-McClusky method that are better suited for programming the computer, and thus can solve any function having any number of variables.
Example: f(w,x,y,z) = Σ(0,2,5,7,10,13,14,15)
The minterms is group according to the numbers of 1's in the minterms binary representation. For Example the Group0 does not have any 1's binary(0000), the group1 has only one 1's(0010), the group2 got 2 subcube minterms that have two 1's.
From the 1-subcube table, we have the four prime implicants w'x'z', x'yz', wyz', and wxy. Note that these prime implicants may not necessary be all in the last table.
Comments
Post a Comment