The Logic Gates

Logic gates are the basic components in digital electronics. They are used to create digital circuits and even complex integrated circuits. Logic gates process signals which represent true or false. Normally the positive supply voltage +Vs represents true and 0V represents false. Gates are identified by their function: NOT, AND, NAND, OR, NOR, EX-OR and EX-NOR.

AND Gate
  
The AND gate is an electronic circuit that gives a high output (1) only if all its inputs are high. A dot (.) is used to show the AND operation i.e. A.B. Bear in mind that this dot is sometimes omitted i.e. AB

OR Gate
  
The OR gate is an electronic circuit that gives a high output (1) if one or more of its inputs are high. A plus (+) is used to show the OR operation.

NOT gate

  
The NOT gate is an electronic circuit that produces an inverted version of the input at its output. It is also known as an inverter. If the input variable is A, the inverted output is known as NOT A. This is also shown as A', or A with a bar over the top, as shown at the outputs. The diagrams below show two ways that the NAND logic gate can be configured to produce a NOT gate. It can also be done using NOR logic gates in the same way.

NAND gate



  
This is a NOT-AND gate which is equal to an AND gate followed by a NOT gate. The outputs of all NAND gates are high if any of the inputs are low. The symbol is an AND gate with a small circle on the output. The small circle represents inversion.

NOR gate
  
This is a NOT-OR gate which is equal to an OR gate followed by a NOT gate. The outputs of all NOR gates are low if any of the inputs are high.
The symbol is an OR gate with a small circle on the output. The small circle represents inversion.


EXOR gate
  
The 'Exclusive-OR' gate is a circuit which will give a high output if either, but not both, of its two inputs are high. An encircled plus sign () is used to show the EOR operation.

EXNOR gate
  

The 'Exclusive-NOR' gate circuit does the opposite to the EOR gate. It will give a low output if either, but not both, of its two inputs are high. The symbol is an EXOR gate with a small circle on the output. The small circle represents inversion.

The NAND and NOR gates are called universal functions since with either one the AND and OR functions and NOT can be generated.

Note:

A function in sum of products form can be implemented using NAND gates by replacing all AND and OR gates by NAND gates.

A function in product of sums form can be implemented using NOR gates by replacing all AND and OR gates by NOR gates.

Logic gate symbols


Logic gates representation using the Truth table:

Summary for all 2-input gates
InputsOutput of each gate
A B ANDNAND OR NOREX-OREX-NOR
00 010 101
01 011 010
10 011 010
11 101 001

Summary for all 3-input gates
InputsOutput of each gate
A B C ANDNAND OR NOR
000 01 01
001 01 10
010 01 10
011 01 10
100 01 10
101 01 10
110 01 10
111 10 10

No comments: