배울 내용

  • Apply a 4-to-1 MUX as a channel selector.
  • Use a 2-bit select to address 4 input channels.
  • Read the MUX truth table for the application.
  • Recognize MUXes in HDMI switches, KVMs, and audio routing.
  • Scale to wider channel counts by adding select bits.

작동 원리

A 4-to-1 multiplexer makes an excellent TV channel selector: four channel inputs, two select bits, one output to the screen. The select code (S1, S0) picks which channel reaches the output: - 00 → Channel 1 - 01 → Channel 2 - 10 → Channel 3 - 11 → Channel 4

This is the same circuit as the textbook 4-to-1 MUX, just with the application labelled. Real TVs are far more complex (RF tuners, digital decoders) but the principle of "select one of N input streams to display" is the same — multiplexers are the underlying primitive.

The select bits in a real remote control come from button presses encoded into a 2-bit (or wider) channel-number register. Each button press updates the register; the MUX immediately routes the new channel through. The user sees an instant switch.

For 16 channels you'd need a 16-to-1 MUX with 4 select bits; for 256 channels, an 8-bit select. MUXes scale efficiently — the select width is logarithmic in input count.

진리표

Selecting one of 4 channels with a 2-bit select code. Showing each channel's selection.

입력 출력
S1S0 Channel
00 1 S=00 → Channel 1
01 1 S=01 → Channel 2
10 1 S=10 → Channel 3
11 1 S=11 → Channel 4

불 대수식

Y=S1S0C1+S1S0C2+S1S0C3+S1S0C4Y = \overline{S_1}\overline{S_0} C_1 + \overline{S_1}S_0 C_2 + S_1\overline{S_0} C_3 + S_1 S_0 C_4

Standard 4-to-1 MUX expression — each channel ANDed with its select-code minterm.

단계별로 시도해 보세요

위 임베드에서 입력을 설정한 후, 예상 결과를 읽고 직접 확인하세요.

  1. 1
    S1 = 0 S0 = 0 C1 = 1
    예상: Output = 1 (showing C1)
    관찰 포인트: Select 00 → Channel 1 plays. Other channels are tuned out.
  2. 2
    S1 = 0 S0 = 1 C2 = 1
    예상: Output = 1 (showing C2)
    관찰 포인트: Flip S0 — switch to Channel 2 instantly.
  3. 3
    S1 = 1 S0 = 0 C3 = 1
    예상: Output = 1 (showing C3)
    관찰 포인트: Channel 3 selected. The MUX routes the new channel through immediately.
  4. 4
    S1 = 1 S0 = 1 C4 = 0
    예상: Output = 0
    관찰 포인트: Channel 4 selected, but C4 input is 0. Output reflects the actual channel content — 0 means "channel currently dark."

사용된 구성 요소

실제 응용 사례

Analog TV channel selection. Older TVs used analog MUXes (or selectable RF tuners) to pick between input bands. The select control was the channel knob.

HDMI input switching. Modern TVs use multiplexers (or active switches) to route one of N HDMI sources to the display pipeline. The remote's input button drives the select.

Audio/video matrix routing. Conference room AV systems route multiple inputs to multiple outputs via crossbar switches — fundamentally an array of MUXes.

KVM switches. Keyboard/Video/Mouse switches use multiplexers to share peripherals across multiple computers based on a select knob.

Radio frequency selection. Radios with preset buttons use small MUXes to select between stored frequency-tuning configurations.

자주 묻는 질문

Why is a TV channel select called a multiplexer?
Multiplexer is a generic term for "select one of N to route to a single output." TV inputs are a specific application — channel select. Same circuit, different application labels.
How do real digital TVs handle channel select?
Modern TVs decode encoded RF or HDMI signals digitally; the channel selector is internal to the digital signal processor. But conceptually it's still a MUX — picking which decoded stream feeds the display pipeline.
What if I want to switch between 8 channels?
Use an 8-to-1 MUX (3 select bits). For 16, a 16-to-1 (4 select bits). MUXes scale logarithmically in select width.
How is fast channel-changing implemented?
MUX-level selection is microseconds-fast — the slow part of TV channel change is RF tuning or decoder buffer flush. Pure MUX selection happens in nanoseconds; modern TVs add buffering and de-noise transitions for visual smoothness.
Could I MUX between video signals (multi-bit) instead of single bits?
Yes — for an 8-bit-per-pixel video signal, use 8 parallel 4-to-1 MUXes (one per bit), all sharing the same select. The select picks which channel's full 8-bit pixel reaches the output. This is how real video switches work — banks of MUXes one per data line.

학습 계속하기