A
logic gate is a basic building block of digital circuits that perform a specific logical operation on one or more binary inputs to produce a single output. The output is usually in the form of either 0 or 1 (false or true, respectively). Logic gates are used in various electronic devices to perform functions like arithmetic operations, decision-making processes, and memory storage.
Basic Types of Logic Gates:
- AND Gate:
-
Operation: The output is
1 only if
both inputs are
1.
-
Symbol: A flat-ended shape with two inputs on the left and one output on the right.
-
Truth Table:
| A | B | Output (A AND B) |
|---|---|------------------|
| 0 | 0 | 0 |
| 0 | 1 | 0 |
| 1 | 0 | 0 |
| 1 | 1 | 1 |
- OR Gate:
-
Operation: The output is
1 if
at least one input is
1.
-
Symbol: A curved shape with two inputs on the left and one output on the right.
-
Truth Table:
| A | B | Output (A OR B) |
|---|---|-----------------|
| 0 | 0 | 0 |
| 0 | 1 | 1 |
| 1 | 0 | 1 |
| 1 | 1 | 1 |
- NOT Gate (Inverter):
-
Operation: The output is the
opposite of the input (inverts the input).
-
Symbol: A triangle with a small circle (representing inversion) at the output.
-
Truth Table:
| A | Output (NOT A) |
|---|----------------|
| 0 | 1 |
| 1 | 0 |
- NAND Gate:
-
Operation: The output is the
opposite of the AND gate. It gives
0 only if
both inputs are
1.
-
Symbol: Similar to the AND gate symbol but with a small circle at the output.
-
Truth Table:
| A | B | Output (A NAND B) |
|---|---|-------------------|
| 0 | 0 | 1 |
| 0 | 1 | 1 |
| 1 | 0 | 1 |
| 1 | 1 | 0 |
- NOR Gate:
-
Operation: The output is the
opposite of the OR gate. It gives
0 if
at least one input is
1.
-
Symbol: Similar to the OR gate symbol but with a small circle at the output.
-
Truth Table:
| A | B | Output (A NOR B) |
|---|---|------------------|
| 0 | 0 | 1 |
| 0 | 1 | 0 |
| 1 | 0 | 0 |
| 1 | 1 | 0 |
- XOR Gate (Exclusive OR):
-
Operation: The output is
1 if
only one of the inputs is
1 (but not both).
-
Symbol: Similar to the OR gate but with an extra curved line before the output.
-
Truth Table:
| A | B | Output (A XOR B) |
|---|---|------------------|
| 0 | 0 | 0 |
| 0 | 1 | 1 |
| 1 | 0 | 1 |
| 1 | 1 | 0 |
- XNOR Gate (Exclusive NOR):
-
Operation: The output is
1 if
both inputs are the
same (both 0 or both 1).
-
Symbol: Similar to the XOR gate symbol but with a small circle at the output.
-
Truth Table:
| A | B | Output (A XNOR B) |
|---|---|-------------------|
| 0 | 0 | 1 |
| 0 | 1 | 0 |
| 1 | 0 | 0 |
| 1 | 1 | 1 |
Summary:
- AND: Output is 1 only when both inputs are 1.
- OR: Output is 1 when at least one input is 1.
- NOT: Output is the opposite of the input.
- NAND: Output is the opposite of AND.
- NOR: Output is the opposite of OR.
- XOR: Output is 1 when only one input is 1.
- XNOR: Output is 1 when both inputs are the same.
These gates are fundamental to constructing more complex digital circuits used in computers, calculators, and many electronic devices!