F(A,B,C,D) = Σm(0,1,3,7,8,9,11,15) — Quine–McCluskey

exam standard3 prime implicants, 2 essential

Answer

B′ · C′ + C · D

Why this example is worth doing

Eight minterms that pair off cleanly into two quads, and the resulting expression contains no B at all. Seeing a variable vanish is unsettling the first time and worth an explicit note: it means the function's value never depends on that input, so the synthesised circuit leaves the pin unconnected. The page shows the tabulation reaching a dash in B's position in the very first round for every pair, which is the mechanical signature of an irrelevant input.

Try your own input in the Quine–McCluskey solver. Minimise past the K-map limit with the full tabular method and Petrick’s step.

How the answer is reached

Quine–McCluskey

Prime implicants — Quine–McCluskey
#Term
1B′ · C′
2B′ · D
3C · D
Minimum cover — Quine–McCluskey
#Cover
1B′ · C′ + C · D
Warning:

2 term(s), 4 literal(s); 2 essential prime implicant(s).

Truth table

Truth table — columns #, A, B, C, D, F
#ABCDF
000001
100011
200100
300111
401000
501010
601100
701111
810001
910011
1010100
1110111
1211000
1311010
1411100
1511111

Compare with

Open this example in the Quine–McCluskey solver

The field arrives filled in with this example’s input.

Note:

Notation this page assumes

  • Symbols: · is AND, + is OR, ⊕ is XOR, a prime or an overline is NOT. The field also takes ∧ ∨ ¬ ~ ! & | and the words.
  • Operator precedence, tightest first: NOT, then AND (including juxtaposition), then XOR/XNOR, then NAND/NOR, then OR, then IMPLIES, then IFF.
  • In a minterm index the first variable is the most significant bit, so over [A, B, C] minterm 5 is A·B̄·C.

Sources

  • Quine, “The Problem of Simplifying Truth Functions” (1952)
  • McCluskey, “Minimization of Boolean Functions” (1956)
  • Petrick, “A Direct Determination of the Irredundant Forms” (1956)