Share on Facebook Share on Twitter Email
Answers.com

Combinational logic

 
Wikipedia: Combinational logic

In digital circuit theory, combinational logic (sometimes incorrectly referred to as combinatorial logic) is a type of digital logic which is implemented by boolean circuits, where the output is a pure function of the present input only. This is in contrast to sequential logic, in which the output depends not only on the present input but also on the history of the input. In other words, sequential logic has memory while combinational logic does not.

Combinational logic is used in computer circuits to do Boolean algebra on input signals and on stored data. Practical computer circuits normally contain a mixture of combinational and sequential logic. For example, the part of an Arithmetic Logic Unit, or ALU, that does mathematical calculations is constructed using combinational logic.

Contents

Representation

Combinational logic is used for building circuits where certain outputs are desired, given certain inputs. The construction of combinational logic is generally done using one of two methods: a sum of products, or a product of sums. A sum of products can be easily visualized by looking at a truth table:

A B C Result Logical equivalent
F F F F \neg A \cdot \neg B \cdot \neg C
F F T F \neg A \cdot \neg B \cdot C
F T F F \neg A \cdot B \cdot \neg C
F T T F \neg A \cdot B \cdot C
T F F T A \cdot \neg B \cdot \neg C
T F T F A \cdot \neg B \cdot C
T T F F A \cdot B \cdot \neg C
T T T T A \cdot B \cdot C

Using sum of products, we take the sum of all logical statements which yield true results. Thus, our result would be:

A \cdot \neg B \cdot \neg C + A \cdot B \cdot C \,

It could then be simplified using Boolean algebra to:

A \cdot (\neg B \cdot \neg C + B \cdot C) \,

Logic formulas minimization

Minimization (simplification) of combinational logic formulas is produced on the basis of the following rules:

 (A + B) \cdot (A + C) = A + (B \cdot C), \quad (A \cdot B) + (A \cdot C) = A \cdot (B + C);
 A + (A \cdot B) = A, \quad A \cdot (A + B) = A;
A + (\lnot A \cdot B) = A + B,\quad A \cdot(\lnot A + B) = A \cdot B;
 (A + B)\cdot(\lnot A + B)=B, \quad (A \cdot B) + (\lnot A \cdot B)=B.

Owing to minimization logical function is simplified, and combinational circuit becomes more compact and convenient for realization.

See also

References


Search unanswered questions...
Enter a question here...
Search: All sources Community Q&A Reference topics
 
 

 

Copyrights:

Wikipedia. This article is licensed under the Creative Commons Attribution/Share-Alike License. It uses material from the Wikipedia article "Combinational logic" Read more