Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Comments on Bit-rate vs Baud-rate

Parent

Bit-rate vs Baud-rate

+2
−0

I am really confused how the terms bit-rate are baud-rate are used in electronics. I never bothered thinking about baud-rate being different than bit-rate before. But recently, one of my teachers told baud-rate being the maximum no. of changes in the bit that can occur during the data transfer.

I really want to visualize how they are different from each other.

History
Why does this post require moderator attention?
You might want to add some details to your flag.
Why should this post be closed?

0 comment threads

Post
+6
−0

In short:

  • The baud rate is the symbol transmission rate.

  • The bit rate is the data transmission rate.

(A "symbol", in this context, is simply a group of some relatively arbitrary, non-zero number of bits, transmitted as one atomic unit.)

While in simple cases the two can be identical, as soon as one symbol encodes more than one bit, they diverge. And that is incredibly common in modern data transmission systems.

Therefore, in practice, the bit rate of a channel will almost always be higher than its baud rate.

The baud rate matters more when you are interested in the requirements imposed on the data transmission physical link layer (such as a radio link's spectrum bandwidth, or the transition times in a modulator). The bit rate, on the other hand, matters more when you are interested in how much data can actually be transmitted within a given time period. Both are useful metrics, but as they measure different quantities, they answer different questions.

As an example, consider quadrature amplitude modulation; 4096-QAM encodes 12 bits (212 = 4096) per symbol. Therefore, the baud rate for a 4096-QAM channel is 2-12 = 1/4096 of the data rate of the same channel.

In practice, some of those bits being transmitted will, in turn, likely be used for various kinds of metadata; things like frame headers, checksums, start and stop bits, on-bus addressing, forward error correction, and so on. In places, data is deliberately stretched out, not uncommonly to improve error handling or simplify synchronization. For example, SATA uses 8b/10b encoding on the physical link layer, and CDDA extends data multiple times for various reasons between the raw audio sample data and what's actually on the physical storage medium. Designs like these will reduce the rate at which useful payload data can be transmitted below that of the raw channel bit rate, and that is relevant for the amount of time it takes to usefully transmit some given amount of data, but they do not change the bit rate of the channel itself.

History
Why does this post require moderator attention?
You might want to add some details to your flag.

1 comment thread

General comments (2 comments)
General comments
Elliot Alderson‭ wrote over 3 years ago

In the olden days I liked to use the example of a touch-tone telephone. Each tone was a baud, and each tone transmitted 4 bits. Conversely, plain old UARTs have a bit rate that is lower than the baud rate.

Canina‭ wrote over 3 years ago

@ElliotAlderson At which point you get puzzled looks until you tell people that the DTMF value set is actually 0-9 plus *, #, A, B, C and D, which adds up nicely to 16 distinct values.