tags:
- ece230
- bsu
- school
- digital-systems
- electronics
- lecture
- notes
- fall-2024
source: https://boisestatecanvas.instructure.com/courses/34549/files?preview=16532529
created: 2024-09-04
What are the three Boolean laws you will probably use to minimize Sum Of Product (SOP) functions?
The three Boolean laws you will probably use to minimize SOP functions are:
What is an example of a Sum Of Products (SOP) function written from a truth table?
An example of an SOP function written from a truth table is:
Row | ||||
---|---|---|---|---|
0 | 0 | 0 | 0 | 1 |
1 | 0 | 0 | 1 | 0 |
2 | 0 | 1 | 0 | 1 |
3 | 0 | 1 | 1 | 0 |
4 | 1 | 0 | 0 | 1 |
5 | 1 | 0 | 1 | 1 |
6 | 1 | 1 | 0 | 1 |
7 | 1 | 1 | 1 | 0 |
...
What are the two reasons we use NAND and NOR gates instead of AND and OR gates?
We use NAND and NOR gates instead of AND and OR gates because:
Why do NAND and NOR gates require less circuitry?
NAND and NOR gates require less circuitry because the CMOS transistors in the gates invert the output by default.
Essentially, the CMOS transistors which are used in logic gates invert whatever their input is by default, since that is how they work. To create an AND gate from a NAND, you would have to add two more CMOS transistors to invert the output again.
What is the circuit diagram of a 2-input NAND gate compared with the circuit diagram of a 2-input AND gate?
The circuit diagram of a 2-input NAND gate compared with the circuit diagram of a 2-input AND gate is:
What is the circuit diagram of a 2-input NOR gate compared with the circuit diagram of a 2-input AND gate?
...
...
How do you convert a Product Of Sum (POS) circuit to use NOR gates?
To convert a POS circuit to use NOR gates:
What is an example of a Karnaugh map made from a truth table?
An example of a Karnaugh map made from a truth table is:
0 | 0 | 1 |
0 | 1 | 1 |
1 | 0 | 1 |
1 | 1 | 0 |
0 | 1 | |
---|---|---|
0 | 1 | 1 |
1 | 1 | 0 |
What is the simplified Boolean function of the above Karnaugh map?
The simplified Boolean function of the above Karnaugh map is.
What are the steps for using a Karnaugh map?
The steps for using a Karnaugh map are:
How do you make a Karnaugh map for functions with more than two variables?
To make a Karnaugh map for functions with more than two variables, you combine variables on a single axis and increment them like a binary number.
What is an example of a Karnaugh map with three variables?
An example of a Karnaugh map with three variables is:
00 | 01 | 11 | 10 | |
---|---|---|---|---|
0 | 0 | 1 | 1 | 1 |
1 | 0 | 1 | 0 | 0 |
...
When you write the columns and rows for a Karnaugh map, only a single digit can change from the previous column or row's number. Instead of going from 00 to 01 to 10, you have to go from 00 to 01 to 11 to 10. This is called a Gray Code.
...
What are the five rules for forming groups of 1's on K-Maps?
The five rules for forming groups of 1's on K-Maps are:
...