2:4 decoder, A₁A₀ = 11 — multiplexers and decoders
coreone-hot output
Answer
Y0 = 0, Y1 = 0, Y2 = 0, Y3 = 1
Why this example is worth doing
A decoder asserts exactly one output, chosen by its input as a binary number — the one-hot encoding. The page points out that each output is a single minterm of the input variables, so a decoder is literally a minterm generator, and that is the key to the next example. It also connects back to the three-state bus: a decoder is how you guarantee exactly one driver is enabled.
Try your own input in the Multiplexers & decoders. Multiplexers from 2:1 to 16:1 and decoders from 2:4 to 4:16, with the selection logic derived.
How the answer is reached
The probed row
A1 = 1, A0 = 1
Output table
| A1 | A0 | Y0 | Y1 | Y2 | Y3 |
|---|---|---|---|---|---|
| 0 | 0 | 1 | 0 | 0 | 0 |
| 0 | 1 | 0 | 1 | 0 | 0 |
| 1 | 0 | 0 | 0 | 1 | 0 |
| 1 | 1 | 0 | 0 | 0 | 1 |