DLD Lab 01 (203002013)
DLD Lab 01 (203002013)
Lab Experiment Name: Realizing AND Gate Using NOR and EX-OR Gate
Using NOR.
Student Details
Name ID
1. Ismail Hossain 203002013
2. OBJECTIVES
• To learn the Boolean expression of AND and EX-OR gate from NOR
gate.
• To learn a truth table to derive Boolean expression.
• Implement a logic circuit to realize the AND and EX-OR gates using
using integrated circuits (IC’s) and verifying the truth table.
The NOR gate is universal gate. This means one can create any logical
Boolean expression using only NOR gates
The below diagram is of a two-input NOR gate. The first part is an OR gate
and the second part is a dot after it represents a NOT gate. During the
operation of the NOR gate, the inputs are first going through OR gate and
after that, the output gets reversed, and we get the final output. Now we will
look at the truth table of
NOR gate: -
F = (A + B)
NOR gate: -
F = (A + B)
In order to construct AND Gate and EX-OR gates Using NOR gate we need
to be follow the DeMorgan’s Law.
̅̅̅̅̅̅̅̅̅̅̅̅̅̅
(A + B) = 𝐴̅. 𝐵̅
𝐴̅ + 𝐵̅ = 𝐴. 𝐵 = 𝐴𝐵
So give the inverted inputs to a NOR gate, obtain AND gate operation at
output.
𝐹 = ̅̅̅̅̅̅̅̅
𝐴̅ + 𝐵̅
𝐹 = 𝐴𝐵
5.Realizing EX-OR Gate Using NOR: Ex-OR gate is actually Ex-NOR gate
followed by NOT gate. So give the output of Ex-NOR gate to a NOT gate, overall
output is that of an Ex-OR gate.
F = (((A+A’B’)’+(B+A’B’)’)’)’
Or, F = (((A+B’)’+(B+A’)’)’)’
Or, F =’ (((A’+B’’) +(B’+A’’))’)’
Or, F= (((A’. B) + (B’. A))’)’
Or, F = ((A’’. B’) + (B’’. A’))’
Or, F = ((A+B’) +(B+A’))’
Or, F = (A’+B’’) +(B’+A’’)
Or, F = (A’. B) + (B’. A)
Or, F = (A’. B) + (A.B’)
Input Input Output
A B F
0 0 0
0 1 1
1 0 1
1 1 0
7. SUMMARY:
AND gate using only NOR gate, again we can see that the circuit diagram of AND
gate using only NOR gate is exactly similar to that of OR gate using only NAND
gates. Now we will finally see how we can make a NOT gate by using only NOR
gates. A complete tutorial on Exclusive OR Gate (XOR Gate). You learned the
symbol, truth table and Boolean Expression of an XOR Gate, implementation of
XOR Gate using NOR, its symbol, truth table and Boolean Expression, some
common and popular XOR ICs and also some important applications of XOR
Gate.