Question:

Write down truth table and Boolean expression for NOR and NAND gates.

Show Hint

To quickly remember the truth tables: - For \textbf{NOR}, the output is 1 only when \textbf{all inputs are 0}. - For \textbf{NAND}, the output is 0 only when \textbf{all inputs are 1}. They are the exact opposites of the OR and AND gates.
Hide Solution
collegedunia
Verified By Collegedunia

Solution and Explanation

Step 1: Understanding the Concept:
NOR and NAND gates are known as universal logic gates. They are combinations of basic gates (OR, AND) with a NOT gate. 
- NOR = NOT + OR. It gives a high output (1) only when all its inputs are low (0). 
- NAND = NOT + AND. It gives a low output (0) only when all its inputs are high (1).

Step 2: NOR Gate Details:  
The NOR gate is an OR gate followed by a NOT gate. 
Boolean Expression: 
The expression for an OR gate with inputs A and B is \(A+B\). The NOR gate inverts this output. Therefore, the Boolean expression is:

\[ Y = \overline{A+B} \]

 

This is read as "Y equals NOT (A OR B)".

Truth Table:

InputsOR OutputNOR Output
ABA + BY = \(\overline{A + B}\)
0001
0110
1010
1110

Step 3: NAND Gate Details: 
The NAND gate is an AND gate followed by a NOT gate. 
Boolean Expression: 
The expression for an AND gate with inputs A and B is \(A \cdot B\). The NAND gate inverts this output. Therefore, the Boolean expression is:

\[ Y = \overline{A \cdot B} \]

 

This is read as "Y equals NOT (A AND B)".

Truth Table:

InputsAND OutputNAND Output
ABA \(\cdot\) BY = \(\overline{A \cdot B}\)
0001
0101
1001
1110

Step 4: Final Answer: 
The Boolean expressions and truth tables for NOR and NAND gates are provided as detailed above.

Was this answer helpful?
0
0