I had got a following question
let $f(A,B,C,D)=Π(2,3,5,9,11,12,13)$. The total number of prime implicants and essential prime implicants are denoted by P and Q respectively. What is the value Q%P where ′%′ denotes the modulo operator?
I solved it using $POS$ $k-map$ and got $3$ as answer. But the answer given is $2$. I am not sure whether I am correct or not.
Can it be solved using $k-map$ of $POS$ alone or I should use $SOP$ and then find essential PI and PI of $(1,4,6,78,10,14,15)$?
The function is defined in POS form (product of sums). To answer the question about implicants, it has to be converted to SOP form (sum of products):
From the bit-wise inverses of the defined disjunctions, we know the seven maxterms of the function: 2, 3, 4, 6, 10, 12, 13 The minterms of the functions are the remaining nine terms: 0, 1, 5, 7, 8, 9, 11, 14, 15
The is depicted in the following Karnaugh map:
The list of prime implicants:
$P\%Q = 7\%3 = 1$
There might be a different result, if the bits $ABCD$ are counted differently. Apart from remaining flaws, the solution process should be ok.