0% found this document useful (0 votes)
62 views

NAND Gate: X Y F (X.Y) '

The document discusses several types of logic gates: - NAND gates have two or more inputs and output is HIGH only when any one input is LOW. - NOR gates have two or more inputs and output is HIGH only when all inputs are LOW. - XOR gates have two or more inputs and output is HIGH if only one input is HIGH and LOW otherwise. - XNOR gates have two or more inputs and output is HIGH if inputs are the same (both HIGH or both LOW) and LOW if inputs are different. Truth tables and symbols are provided for each gate.

Uploaded by

MK
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
62 views

NAND Gate: X Y F (X.Y) '

The document discusses several types of logic gates: - NAND gates have two or more inputs and output is HIGH only when any one input is LOW. - NOR gates have two or more inputs and output is HIGH only when all inputs are LOW. - XOR gates have two or more inputs and output is HIGH if only one input is HIGH and LOW otherwise. - XNOR gates have two or more inputs and output is HIGH if inputs are the same (both HIGH or both LOW) and LOW if inputs are different. Truth tables and symbols are provided for each gate.

Uploaded by

MK
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

NAND Gate NAND gate is a cascade of AND gate and NOT gate, as shown in the figure below.

It has two or more inputs and only one output. The output of NAND gate is HIGH when any one of its input is LOW (i.e. even if one input is LOW, Output will be HIGH). NAND From AND and NOT

If X and Y are two inputs, then output F can be represented mathematically as F = (X.Y)', Here dot (.) denotes the AND operation and (') denotes inversion. Truth table and symbol of the N AND gate is shown in the figure below. Symbol

Truth Table X 0 0 1 1 Y 0 1 0 1 F=(X.Y)' 1 1 1 0

NOR Gate NOR gate is a cascade of OR gate and NOT gate, as shown in the figure below. It has two or more inputs and only one output. The output of NOR gate is HIGH when any

all its inputs are LOW (i.e. even if one input is HIGH, output will be LOW). Symbol

If X and Y are two inputs, then output F can be represented mathematically as F = (X+Y)'; here plus (+) denotes the OR operation and (') denotes inversion. Truth table and symbol of the NOR gate is shown in the figure below. Truth Table X 0 0 1 1 Y 0 1 0 1 F=(X+Y)' 1 0 0 0

XOR Gate An Exclusive-OR (XOR) gate is gate with two or three or more inputs and one output. The output of a two-input XOR gate assumes a HIGH state if one and only one input assumes a HIGH state. This is equivalent to saying that the output is HIGH if either input X or input Y is HIGH exclusively, and LOW when both are 1 or 0 simultaneously. If X and Y are two inputs, then output F can be represented mathematically as F = X Y, Here denotes the XOR operation. X Y and is equivalent to X.Y' + X'.Y. Truth table and symbol of the XOR gate is shown in the figure below. XOR From Simple gates

Symbol

Truth Table X 0 0 1 1 Y 0 1 0 1 F=(X Y) 0 1 1 0

XNOR Gate An Exclusive-NOR (XNOR) gate is gate with two or three or more inputs and one output. The output of a two-input XNOR gate assumes a HIGH state if all the inputs assumes same state. This is equivalent to saying that the output is HIGH if both input X and input Y is HIGH exclusively or same as input X and input Y is LOW exclusively, and LOW when both are not same. If X and Y are two inputs, then output F can be represented mathematically as F = X Y, Here denotes the XNOR operation. X Y and is equivalent to X.Y + X'.Y'. Truth table and symbol of the XNOR gate is shown in the figure below. Symbol

Truth Table X 0 0 1 1 Y 0 1 0 1 F=(X Y)' 1 0 0 1

You might also like