Jun 28, 2024
Symbol: Triangle pointing right
Input (A): On (1) or Off (0)
Output: Same as input
**Truth Table: ** | Input | Output | |:-----:|:------:| | 0 | 0 | | 1 | 1 |
Circuit Representation: Uses npn transistor, LED as the output
A
(voltage applied)Symbol: Triangle with a circle at the front
Input (A):
Output: Complement of A (A′)
**Truth Table: ** | Input | Output | |:-----:|:------:| | 0 | 1 | | 1 | 0 |
Circuit Representation:
Symbol:
Inputs (A and B):
Output: A * B
**Truth Table: ** | A | B | Output | |:-:|:-:|:------:| | 0 | 0 | 0 | | 0 | 1 | 0 | | 1 | 0 | 0 | | 1 | 1 | 1 |
Circuit Representation:
Symbol:
Inputs (A and B):
Output: A + B
**Truth Table: ** | A | B | Output | |:-:|:-:|:------:| | 0 | 0 | 0 | | 0 | 1 | 1 | | 1 | 0 | 1 | | 1 | 1 | 1 |
Circuit Representation:
Symbol: Similar to AND gate but with a circle
Output: Complement of AND output
**Truth Table: ** | A | B | Output | |:-:|:-:|:------:| | 0 | 0 | 1 | | 0 | 1 | 1 | | 1 | 0 | 1 | | 1 | 1 | 0 |
**Creating NAND Gate: **AND gate followed by NOT gate
Summary: Understanding binary logic gates (Buffer, NOT, AND, OR, NAND, NOR) and principles of Boolean algebra are essential for constructing and interpreting logic circuits.