Design a minimized combinational logic circuit based on the provided 3-input truth table. You are required to use a 3-variable Karnaugh map (K-map) to derive the simplified Sum-of-Products (SOP) expression before proceeding with the circuit construction.
Constraints
Behavioral Reference
| A | B | C | Output |
|---|---|---|---|
| 0 | 0 | 0 | 0 |
| 0 | 0 | 1 | 1 |
| 0 | 1 | 0 | 0 |
| 0 | 1 | 1 | 1 |
| 1 | 0 | 0 | 0 |
| 1 | 0 | 1 | 0 |
| 1 | 1 | 0 | 1 |
| 1 | 1 | 1 | 1 |