Symbols and Baud Rate | Generated by AI

Home 2026.06

Question: What are “signal changes (symbols)” in baud rate?

Answer:

A symbol is a distinct signal state sent over a communication channel during a fixed time interval.

Think of it this way:

A symbol may represent one bit or multiple bits.

Simple Example: Binary Signaling

Suppose the transmitter uses:

Voltage

High ────┐      ┌──────
         │      │
Low  ────┴──────┴──────→ Time
         0      1

Each symbol carries 1 bit.

Symbol Bit
Low 0
High 1

Thus:


Multi-Level Signaling

Instead of only two voltage levels, suppose we use four:

Voltage Level Bits
-3V 00
-1V 01
+1V 10
+3V 11

Now one symbol carries 2 bits.

Example:

00  11  01  10
↓   ↓   ↓   ↓

-3V +3V -1V +1V

If we send:

then:

[ 1000 \times 2 = 2000 \text{ bps} ]

So:


Why “Signal Changes”?

Historically, engineers observed the signal physically changing on the line:

Voltage

+3V ──────┐
          │
+1V ──┐   └──────
      │
-1V ──┘
      └─────────→ Time

Each symbol interval corresponds to a chosen signal state.

A baud is essentially:

“How many symbol intervals per second are transmitted?”

Not every symbol must actually change level from the previous one, but historically baud rate referred to the rate at which symbols are sent.


Real Modems Example

Early telephone modems:

How?

Each symbol encoded:

[ 9600/2400 = 4 \text{ bits per symbol} ]

using modulation schemes such as QAM.

Thus:


Connection to Nyquist

Nyquist says:

[ \text{Maximum Baud Rate} = 2B ]

where (B) is channel bandwidth.

For a 3000 Hz telephone line:

[ 2 \times 3000 = 6000 \text{ baud} ]

If each symbol carries:

This is why communication systems try to pack multiple bits into each symbol.

Intuition

Imagine shipping information with trucks:

Formula:

[ \text{Bit Rate} = \text{Baud Rate} \times \text{Bits per Symbol} ]

So a symbol is the actual physical signal state transmitted during one signaling interval, while bits are the information encoded into that symbol.


Back Donate