tags:
- ece230
- bsu
- school
- digital-systems
- electronics
- notes
- fall-2024
created: 2024-10-14
Q1. (A) Implement the following Boolean function using only NAND logic gates:
The correct equation is
The NAND gate equivalents for NOT, AND, and OR are:
Starting from the most basic term, which in this case is
Q(2). Write the optimized Boolean function for
...
Q(3). (A) Optimize the following Boolean function:
...
(B) Generate and optimize Sum-of-Product (SOP) from the following truth table:
0 | 0 | 0 | 1 |
0 | 0 | 1 | 0 |
0 | 1 | 0 | 1 |
0 | 1 | 1 | 1 |
1 | 0 | 0 | 1 |
1 | 0 | 1 | 0 |
1 | 1 | 0 | 1 |
1 | 1 | 1 | 1 |
...