time division multiplexing

Comprehensive study notes, diagrams, and exam preparation for time division multiplexing.

Time Division Multiplexing

Definition

Time Division Multiplexing is a digital multiplexing technique in which multiple signals share the same transmission channel by being assigned different time slots in a repeating frame structure.

In TDM, each input signal gets exclusive use of the channel for a brief moment, and the process repeats continuously so that all signals are transmitted reliably and in an organized manner.


Main Content

1. Time Slots and Frame Structure

  • In TDM, the total transmission time is divided into frames, and each frame is further divided into time slots.
  • Each time slot is allocated to one input signal or channel, so that every source gets a chance to transmit its data in a fixed sequence.

A simple view of a frame with four channels is:

Frame 1: | Ch1 | Ch2 | Ch3 | Ch4 |
Frame 2: | Ch1 | Ch2 | Ch3 | Ch4 |
Frame 3: | Ch1 | Ch2 | Ch3 | Ch4 |

Here, each channel transmits in its own slot. Since the frames repeat rapidly, the transmission looks continuous to the user.

There are two major ideas behind this structure:

Deterministic access

  • Each source knows when its slot will arrive, so there is no collision between users.

Synchronization requirement

  • The transmitter and receiver must stay synchronized so that the receiver can correctly identify which slot belongs to which channel.

A practical example is a digital telephony system where several voice calls are carried over one high-speed line. Every call is sampled and placed into a slot, preserving the order of transmission.

2. Types of Time Division Multiplexing

Synchronous TDM

  • Each channel is assigned a fixed time slot whether it has data to send or not. If a channel has no data, the slot may remain empty, causing some inefficiency but making the system simple and predictable.

Statistical TDM

  • Time slots are assigned dynamically only to channels that actually have data to transmit. This improves efficiency because unused slots are not wasted, but it requires more complex control and buffering.

In synchronous TDM:

  • Slots are permanently reserved.
  • Timing is easier to manage.
  • It is commonly used where traffic is continuous or predictable.

In statistical TDM:

  • Slots are shared based on demand.
  • Bandwidth is used more efficiently.
  • It is suitable for bursty traffic such as computer data networks.

Comparison example:

  • If 8 users are connected to a synchronous TDM link but only 3 are actively transmitting, all 8 slots may still be sent, wasting 5 slots.
  • In statistical TDM, only the active 3 users may receive slots during that interval, improving channel utilization.

3. Multiplexing and Demultiplexing

Multiplexing

  • is the process of combining multiple input signals into a single composite signal for transmission over one communication medium.

Demultiplexing

  • is the reverse process, where the receiver separates the composite signal back into the original individual signals.

In TDM, the multiplexer collects data from multiple sources according to the slot schedule and sends them over the shared channel. At the receiving end, the demultiplexer uses synchronization information to separate the data and deliver each stream to the correct destination.

A conceptual example:

Input 1 --->|
Input 2 --->|             Shared Channel             |---> Output 1
Input 3 --->|  Multiplexer  ======= TDM Frame ======= |---> Output 2
Input 4 --->|                                         |---> Output 3
                                                     |---> Output 4

Important points:

  • The multiplexer must insert data in the correct slot order.
  • The demultiplexer must recover each channel accurately.
  • A synchronization error can cause data to be assigned to the wrong user, which may lead to communication failure.

This process is fundamental in digital systems because it allows many low-rate signals to share a high-rate link effectively.


Working / Process

1. Input signals are prepared and synchronized

  • Multiple digital or digitized signals are collected from different sources.
  • In many systems, analog signals such as voice are first sampled and converted into digital form using ADC (Analog-to-Digital Conversion).
  • The system ensures that the timing of the sources is aligned so that data can be placed correctly into the frame.

2. The multiplexer assigns time slots and forms a frame

  • Each input is given a specific time slot according to the TDM scheme.
  • The multiplexer arranges the bits or bytes from each channel into a continuous frame sequence.
  • If synchronous TDM is used, every frame contains the same slot order.
  • If statistical TDM is used, only active channels are included, along with addressing/control information.

3. The receiver synchronizes and separates the channels

  • The transmitted composite signal reaches the receiver through the shared channel.
  • The demultiplexer identifies the frame and time-slot boundaries using synchronization bits or timing patterns.
  • It extracts each channel’s data and reconstructs the original individual signals for delivery to the appropriate destination.

A simple working illustration:

Source A: A1 A2 A3 A4 ...
Source B: B1 B2 B3 B4 ...
Source C: C1 C2 C3 C4 ...

TDM Output:
| A1 | B1 | C1 | A2 | B2 | C2 | A3 | B3 | C3 | ...

This shows how samples from different sources are interleaved in time rather than sent simultaneously.


Advantages / Applications

Efficient use of a single channel

  • Multiple signals can share the same communication link without needing separate physical lines for each source.
  • This reduces infrastructure cost and improves bandwidth utilization.

No crosstalk or collision between channels

  • Since each user transmits in a unique time slot, signals do not overlap in the same time interval.
  • This makes TDM highly reliable for structured digital communication.

Widely used in real-world systems

  • TDM is used in digital telephony, mobile communications, satellite communication, fiber optic networks, and data transmission systems.
  • It is also useful in systems where many channels must be carried over a single high-speed line.

A few common application examples:

Telephone systems

  • Many voice calls combined on a single trunk line.

Digital subscriber lines and optical links

  • High-speed data streams divided into time slots.

Telecommunication backbones

  • Long-distance digital transmission often relies on multiplexing methods like TDM.

PCM systems

  • Pulse Code Modulation often uses TDM to combine samples from different voice channels.

Summary

  • Time Division Multiplexing shares one communication channel by dividing time into slots.
  • It can be synchronous or statistical depending on how slots are assigned.
  • Multiplexing combines signals, and demultiplexing separates them at the receiver.

Time slot, frame, multiplexer, demultiplexer, synchronization

  • are important terms to remember.