NAND logic

Logic constructed only from NAND gates From Wikipedia, the free encyclopedia

The NAND Boolean function has the property of functional completeness. This means that any Boolean expression can be re-expressed by an equivalent expression utilizing only NAND operations. For example, the function NOT(x) may be equivalently expressed as NAND(x,x). In the field of digital electronic circuits, this implies that it is possible to implement any Boolean function using just NAND gates.

The mathematical proof for this was published by Henry M. Sheffer in 1913 in the Transactions of the American Mathematical Society (Sheffer 1913). A similar case applies to the NOR function, and this is referred to as NOR logic.

NAND

A NAND gate is an inverted AND gate. It has the following truth table:

Q = A NAND B
More information Input A, Input B ...
Truth Table
Input AInput BOutput Q
001
011
101
110
Close
A CMOS transistor NAND element. Vdd denotes positive voltage.

In CMOS logic, if both of the A and B inputs are high, then both the NMOS transistors (bottom half of the diagram) will conduct, neither of the PMOS transistors (top half) will conduct, and a conductive path will be established between the output and Vss (ground), bringing the output low. If both of the A and B inputs are low, then neither of the NMOS transistors will conduct, while both of the PMOS transistors will conduct, establishing a conductive path between the output and Vdd (voltage source), bringing the output high. If either of the A or B inputs is low, one of the NMOS transistors will not conduct, one of the PMOS transistors will, and a conductive path will be established between the output and Vdd (voltage source), bringing the output high. As the only configuration of the two inputs that results in a low output is when both are high, this circuit implements a NAND (NOT AND) logic gate.

Making other gates by using NAND gates

A NAND gate is a universal gate, meaning that any other gate can be represented as a combination of NAND gates.

NOT

A NOT gate is made by joining the inputs of a NAND gate together. Since a NAND gate is equivalent to an AND gate followed by a NOT gate, joining the inputs of a NAND gate leaves only the NOT gate.

More information Desired NOT Gate ...
Desired NOT Gate NAND Construction
Q = NOT( A )= A NAND A
Close
More information Input A, Output Q ...
Truth Table
Input AOutput Q
01
10
Close

AND

An AND gate is made by inverting the output of a NAND gate as shown below.

More information Desired AND Gate ...
Desired AND Gate NAND Construction
Q = A AND B= ( A NAND B ) NAND ( A NAND B )
Close
More information Input A, Input B ...
Truth Table
Input AInput BOutput Q
000
010
100
111
Close

OR

If the truth table for a NAND gate is examined or by applying De Morgan's laws, it can be seen that if any of the inputs are 0, then the output will be 1. To be an OR gate, however, the output must be 1 if any input is 1. Therefore, if the inputs are inverted, any high input will trigger a high output.

More information Desired OR Gate ...
Desired OR Gate NAND Construction
Q = A OR B= ( A NAND A ) NAND ( B NAND B )
Close
More information Input A, Input B ...
Truth Table
Input AInput BOutput Q
000
011
101
111
Close

NOR

A NOR gate is an OR gate with an inverted output. Output is high when neither input A nor input B is high.

More information Desired NOR Gate ...
Desired NOR Gate NAND Construction
Q = A NOR B= [ ( A NAND A ) NAND ( B NAND B ) ] NAND
[ ( A NAND A ) NAND ( B NAND B ) ]
Close
More information Input A, Input B ...
Truth Table
Input AInput BOutput Q
001
010
100
110
Close

XOR

An XOR gate is made by connecting four NAND gates as shown below. This construction entails a propagation delay three times that of a single NAND gate.

More information Desired XOR Gate ...
Desired XOR Gate NAND Construction
Q = A XOR B= [ A NAND ( A NAND B ) ] NAND
[ B NAND ( A NAND B ) ]
Close
More information Input A, Input B ...
Truth Table
Input AInput BOutput Q
000
011
101
110
Close

Alternatively, an XOR gate is made by considering the disjunctive normal form , noting from de Morgan's law that a NAND gate is an inverted-input OR gate. This construction uses five gates instead of four.

More information Desired Gate ...
Desired Gate NAND Construction
Q = A XOR B= [ B NAND ( A NAND A ) ] NAND
[ A NAND ( B NAND B ) ]
Close

XNOR

An XNOR gate is made by considering the disjunctive normal form , noting from de Morgan's law that a NAND gate is an inverted-input OR gate. This construction entails a propagation delay three times that of a single NAND gate and uses five gates.

More information Desired XNOR Gate ...
Desired XNOR Gate NAND Construction
Q = A XNOR B= [ ( A NAND A ) NAND ( B NAND B ) ] NAND
( A NAND B )
Close
More information Input A, Input B ...
Input AInput BOutput Q
001
010
100
111
Close

Alternatively, the 4-gate version of the XOR gate can be used with an inverter. This construction has a propagation delay four times (instead of three times) that of a single NAND gate.

More information Desired Gate ...
Desired Gate NAND Construction
Q = A XNOR B= { [ A NAND ( A NAND B ) ] NAND
[ B NAND ( A NAND B ) ] } NAND
{ [ A NAND ( A NAND B ) ]
NAND [ B NAND ( A NAND B ) ] }
Close

MUX

A multiplexer or a MUX gate is a three-input gate that uses one of the inputs, called the selector bit, to select one of the other two inputs, called data bits, and outputs only the selected data bit.[1]

More information Desired MUX Gate ...
Desired MUX Gate NAND Construction
MUX diagram using NAND gates
Q = [ A AND NOT( S ) ]
OR ( B AND S )
= [ A NAND ( S NAND S ) ]
NAND ( B NAND S )
Close
More information Input A, Input B ...
Truth Table
Input AInput BSelect Output Q
0000
0100
1001
1101
0010
0111
1010
1111
Close

DEMUX

A demultiplexer performs the opposite function of a multiplexer: It takes a single input and channels it to one of two possible outputs according to a selector bit that specifies which output to choose.[1]

More information Desired DEMUX Gate ...
Desired DEMUX Gate NAND Construction

DEMUX Gate

Close
More information Input, Select ...
Truth Table
InputSelect Output AOutput B
0000
1010
0100
1101
Close

See also

References

Related Articles

Wikiwand AI