Multiplexer in Digital Electronics

In this lecture, we are going to cover another combinational circuit called Multiplexer in Digital Electronics. We will cover what is Multiplexer, the block diagram of the multiplexer, the types of multiplexer, the need of multiplexers, and the advantages of multiplexer and in the end, we will see the application of multiplexer.

What is Multiplexer

A Multiplexer, also known as a MUX, is a special type of combinational circuit used in digital electronics. The block diagram of an n-to-1 multiplexer and its equivalent circuit is shown in the figure below

As shown in the figure, there are n-data inputs, one output, and a m select inputs, with 2m = n

Multiplexer

A multiplexer is a digital circuit that selects one of the n data inputs and routes it to the output. The selection of one of the n inputs is done by the select lines.

To select n inputs we need m select lines such that 2m = n. Depending on the digital code applied at the select inputs, one out of n data sources is selected and transmitted to the single output Y.

The operation of a Multiplexer is controlled by the select inputs. By applying a particular digital code to the select inputs, one out of n data sources is selected and transmitted to the output. In other words, it acts like a digitally controlled single pole, multiple-way switch. At any given moment, the output is connected to only one of the n data inputs.

The Multiplexer also includes an enable input (E) which is typically active low. This input, when activated, allows the Multiplexer to perform its selected operation.

Multiplexers find widespread use in digital circuits. Some common applications include data routing, data selection, data transmission, and signal processing. They offer advantages such as compactness, simplified circuit design, and enhanced flexibility in data manipulation.

Overall, Multiplexers play a crucial role in optimizing digital circuits by efficiently selecting and routing data to the desired destination.

Also Read: Magnitude Comparator and Digital Comparator

Need of Multiplexer

  • In most electronic systems, digital data is available on more than one line. It is necessary to route this data over a single line.
  • Under such circumstances, we require a circuit that selects one of the many inputs at a time.
  • This circuit is nothing else but a multiplexer, which has many inputs, one output, and some select inputs.
  • Multiplexer improves the reliability of the digital system because it reduces the number of external wired connections.

Types of Multiplexer

There are several types of multiplexer in digital electronics, each with a different number of data inputs and select inputs. Here is a brief description of the main types:

TypeDescription
2 to 1 MultiplexerA 2 to 1 multiplexer has two data inputs, one select input, and one output. It selects one of the two data inputs based on the selected input.
4 to 1 MultiplexerA 4 to 1 multiplexer has four data inputs, two select inputs, and one output. It selects one of the four data inputs based on the selected inputs.
8 to 1 MultiplexerAn 8 to 1 multiplexer has eight data inputs, three select inputs, and one output. It selects one of the eight data inputs based on the selected inputs.
16 to 1 MultiplexerA 16 to 1 multiplexer has sixteen data inputs, four select inputs, and one output. It selects one of the sixteen data inputs based on the selected inputs.
n-to-1 MultiplexerAn n to 1 multiplexer has n data inputs, log2(n) select inputs, and one output. It selects one of the n data inputs based on the selected inputs.

now we are going to learn about each type of multiplexer in detail.

Also Read: BCD Adder – Block Diagram, Truth table & Circuit


2 To 1 Multiplexer

The block diagram of 2 to 1 Multiplexer is shown in the below figure. it has two data inputs D0 and D1, one select input S, an enable input, and one output.

block diagram of 2 to 1 Multiplexer

2 to 1 Multiplexer Truth Table

  • The truth table of 2 to 1 Multiplexer is shown in the figure below.
2 to 1 Multiplexer Truth Table

Realization of 2 To 1 Multiplexer using Gates

  • Write a more elaborate truth table of 2 to 1 Multiplexer as shown in the figure below.
2 to 1 Multiplexer Truth Table 1

From the above truth table, it is clear that Y =1 for only two conditions shown by the shaded boxes.

\therefore \mathbf{Y = E \bar SD_0 + ESD_1}

\therefore \mathbf{Y = E (\bar SD_0 + SD_1)}

  • 2 to 1 multiplexer circuit diagram is shown in the figure below:
2 to 1 multiplexer circuit diagram

4 To 1 Multiplexer

  • The below figure shows the block diagram of a 4 to 1 multiplexer.
block diagram of 4 to 1 Multiplexer
  • The truth table of 4 to 1 multiplexer is shown in the below figure.
4 to 1 multiplexer truth table
  • Note that n = 4 hence a number of select lines i.e. m =2 so that 2m = n.
  • The truth table tells us that if S1S0 = 00, the data bit D0 is selected and routed to output.

Y = D0 … when S1S0 = 00

  • Similarly, if S1S0 = 01, then D1 is selected and routed to the output.

Y = D1 … when S1S0 = 01

  • Y = D2 for S1S0 = 10 and Y = D3 … when S1S0 = 11
  • The output will be high when the selected input (D0, D1, etc.) is 1. Hence the logical expression for output in the SOP form is as follows.

\mathbf{Y = \bar S_1 \bar S_0D_0 + \bar S_1 S_0 D_1 + S_1 \bar S_0 D_2 + S_1S_0D_3 }

  • This expression can be realized using basic gates as shown in the figure below.
4 to 1 Multiplexer circuit diagram

8 to 1 Multiplexer

  • The block diagram of an 8 to 1 multiplexer is shown in the figure.
block diagram of 8 to 1 Multiplexer
  • The 8 to 1 multiplexer truth table is shown in the figure below.
8 to 1 multiplexer truth table
  • When the enable input is 0, the output will be 0 irrespective of any input.
  • With E = 1, we can select any one of the eight data inputs and connect it to the output.
  • For example if S2 S1 S0 = 0 1 1 then the data input D3 is selected and output Y will follow the input D3.

The expression for output Y can be obtained from the truth table of the figure shown.

Capture

The 8 to 1 multiplexer circuit diagram is shown in the figure below.

8 to 1 Multiplexer circuit diagram

16 to 1 Multiplexer

  • The block diagram of a 16 to 1 Multiplexer is shown in the figure below. it has 16 data inputs, 4 select lines, one enable input, and one output.
block diagram of 16 to 1 Multiplexer
  • When the enable input E = 0, the multiplexer output Y = 0 irrespective of the status of other inputs.
  • With E = 1, we can select any one of the 16 inputs with the help of select input lines and connect the selected input to the output.
  • The 16 to 1 multiplexer truth table is shown in the figure below.
16 to 1 multiplexer truth table

Advantages Of Multiplexer

  • It reduces the number of wires, so it reduces the circuit complexity and cost.
  • We can implement many combinational circuits using Multiplexer.
  • It simplifies the logic design.
  • It does not need the k-maps and simplification.

Application Of Multiplexer

Some of the important applications of a multiplexer area as follows:

  1. It is used as a data selector to select one out of many data inputs.
  2. It is used for simplification of logic design.
  3. In the data acquisition system.
  4. In designing the combinational circuits.
  5. In the digital-to-analog converter.
  6. To minimize the number of connections.

FAQs

What is a multiplexer in digital electronics?

In electronics, a multiplexer (or mux; spelled sometimes as multiplexor), also known as a data selector, is a device that selects between several analog or digital input signals and forwards the selected input to a single output line.

What is a multiplexer with an example?

Multiplexers allow the process of transmitting different types of data such as audio, video at the same time using a single transmission line.

How does a 4-to-1 multiplexer work?

A 4-to-1 multiplexer takes 4 inputs and directs a single selected input to output.

What is a multiplexer used for?

multiplexers can be used to increase the total data transmitted over the network by allowing several connections over a single channel. This increases the efficiency of transmitting various signal types.

What are the advantages of multiplexer?

The advantage of multiplexing is that we can transmit a large number of signals to a single medium. 

What is the IC number of the multiplexer?

IC 74151 is a type of integrated circuit (IC) that is used as a data selector or multiplexer. 

Also Read:

Hello friends, my name is Trupal Bhavsar, I am the Writer and Founder of this blog. I am Electronics Engineer(2014 pass out), Currently working as Junior Telecom Officer(B.S.N.L.) also I do Project Development, PCB designing and Teaching of Electronics Subjects.

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.

telegram logo Join Our Telegram Group!