Post-Karnaugh map simplification

  • Thread starter Thread starter Bipolarity
  • Start date Start date
  • Tags Tags
    Map
AI Thread Summary
To simplify a boolean expression derived from a Karnaugh map, one can use techniques such as consensus theorem or algebraic manipulation, though many resources focus on initial K-map construction rather than post-generation simplification. Heuristics for selecting nonessential prime implicants can help minimize gate usage, with considerations for circuit complexity and efficiency. Additionally, deciding between 0's logic or 1's logic often depends on the specific circuit requirements and desired outcomes. While some believe further simplification after K-map generation is minimal, exploring various simplification methods can yield better results. Understanding these strategies is crucial for effective circuit design.
Bipolarity
Messages
773
Reaction score
2
So I have to implement a 4 input 1 output circuit. I am given the Karnaugh map (obviously a 4by4) and have to build the circuit.

I have already determined the essential prime implicants for my map and three possible permutations of nonessential prime implicants.

So let's say I pick a permutation. I will obtain a boolean expression, but how could I simplify this expression? Most textbooks I have explain only how to draw the K-map itself and not how further simplification can be done after the boolean expression from the K-map has been generated. Is there an algorithm or procedure that allows one to further simplify the expression?

Also, are there heuristics in determining which set of nonessential prime implicants will produce simplified expressions using the fewest number of gates?

Also, are there heuristics in determining whether one should build using 0's logic or 1's logic?

Thanks for all the help.

BiP
 
Engineering news on Phys.org
Just guessing, but I would think that after simplifying the Karnaugh map, there would be little/no further simplification possible.
 
Very basic question. Consider a 3-terminal device with terminals say A,B,C. Kirchhoff Current Law (KCL) and Kirchhoff Voltage Law (KVL) establish two relationships between the 3 currents entering the terminals and the 3 terminal's voltage pairs respectively. So we have 2 equations in 6 unknowns. To proceed further we need two more (independent) equations in order to solve the circuit the 3-terminal device is connected to (basically one treats such a device as an unbalanced two-port...
suppose you have two capacitors with a 0.1 Farad value and 12 VDC rating. label these as A and B. label the terminals of each as 1 and 2. you also have a voltmeter with a 40 volt linear range for DC. you also have a 9 volt DC power supply fed by mains. you charge each capacitor to 9 volts with terminal 1 being - (negative) and terminal 2 being + (positive). you connect the voltmeter to terminal A2 and to terminal B1. does it read any voltage? can - of one capacitor discharge + of the...
Back
Top