4

The definition of bandwidth is frequency range and it seems to be correct to say that higher bandwidth guarantees higher data rate.

However, i do not understand why it does.

Data rate depends on modulation scheme and nowdays QAM, which is combination of ASK and PSK, is most widely used scheme.

I have understood that FSK needs more frequency so it needs more bandwidth but I do not understand why ASK and PSK need more bandwidth. (If QAM did not need more bandwidth, QAM could be used in small bandwidth and it would mean that bandwidth has nothing to do with data rate.)

As i understand, ASK does not need more bandwidth. If transmission power in transmitter is bigger, the amplitude of wave will be bigger. In that sense, ASK can be achieved by transmission power control.

Furthermore, PSK will be constructed if signal is delayed. As I know, the angle of phase is decided by delay of wave (timewise.)

If what I explained is correct, why does high bandwidth guarantee high data rate?

JRE
  • 67,678
  • 8
  • 104
  • 179
장영록
  • 51
  • 1
  • 3
  • 5
    Higher bandwidth doesn't guarantee higher data rate, you could always squander a resource. But higher data rates require higher bandwidth (or higher SNR, but you quickly run into diminishing returns). – The Photon Dec 02 '16 at 02:50
  • Higher bandwidth can give you more bit rate but it's not the only thing that can give you more bit rate. – user253751 Dec 02 '16 at 03:54
  • Okay. I should have mentioned SNR is large enough... What i want to ask is why bandwidth affects data rate – 장영록 Dec 02 '16 at 07:20

6 Answers6

5

The simplest explanation is found in Shannon's equation:

$$C = B\log_2(1+S/N)$$

where C = channel capacity in bits/second B = channel bandwidth in Hertz S = signal power in watts N = noise power in watts

This equation relates the maximum channel capacity (C), that is the maximum data rate, as a function of channel bandwidth (B) and channel signal-to-noise ratio (S/N). The bandwidth basically sets the limit on how many symbols per second can be sent. The signal-to-noise ratio, S/N, sets the limit on how many bits can be sent by each symbol. If you consider the signal to be a square wave, it is clear that higher bandwidths allow higher frequency square waves to be transmitted. Similarly, higher signal-to-noise ratios allow more bits for each symbol because more amplitude values can be discriminated at the receiver. You can increase data rate, without increasing bandwidth, by increasing transmitter power because that improves the signal-to-noise ratio which, by Shannon's equation, increases the channel capacity. However, as the equation also shows, the ultimate channel capacity also depends on the bandwidth. Thus, for the same transmitter power, the channel with the higher bandwidth will have the higher channel capacity.

The Photon
  • 126,425
  • 3
  • 159
  • 304
Barry
  • 15,733
  • 1
  • 26
  • 28
  • 1
    More bandwidth also tends to mean more noise, so it's not obvious that "for the same transmitter power, the channel with the higher bandwidth will have the higher channel capacity." But as a generality, it's usually true. – The Photon Dec 02 '16 at 04:00
  • As you explained, bandwidth set the limit on how many symbols per second can be sent. However, i do not know why. I understand SNR depends on transmission power so modulation will be decided by SNR which is decided by transmission power. However, why is bandwidth related to how many symbols per second can be sent? – 장영록 Dec 02 '16 at 07:17
  • 1
    @장영록 - Think of a signal as an analog waveform (which, at a physical level, all signals are) and how you would transmit/recieve such a signal. Do a Fourier Transform. The higher the date rate, the shorter the individual bits, and the greater the component frequencies need to be. – WhatRoughBeast Jun 07 '19 at 12:14
4

Rephrasing what others have answered in formal ways, look at it this way:

Information can only be transmitted via the change of some state ("surprises" in @Evan's terms). A zero-bandwidth (constant amplitude and frequency) sine wave does not convey any information, it is just there.

Now, every time a (sinusodial) signal of frequency f changes, be it in amplitude or phase or both, the resulting signal around the point of time of the change cannot be of frequency f anymore; otherwise the signal would not change at all. So, any change of a signal from a continuous sine wave (temporarily) generates a frequency or frequencies somewhat above and/or below the original frequency f.

The difference of the temporary frequency/-ies and the base frequency f, delta-f, determines how fast and how large the change can be (rate of change) and vice versa. A quick change generates/requires greater frequency deviations than a slow one. In theory, if you have a constant sinusodial signal and you would switch it off (0% amplitude) instantly, i.e. with 0 time taken passing from one state (100% amplitude) to the other (0%), this would create/require infinitely high frequencies. That's why it's impossible to modify a given signal at arbitrarily high speeds.

Picking up from above, each single change of the signal can be used to convey some information, be it a single bit or less or more than one bit. To pack more information into a single change (more bits) you need greater changes (you need to be able to discern e.g. 4 states (2 bits, range 0-3) instead of 2 (1 bit, range 0-1)). Greater changes cause/require greater delta-f's. If you just want to transmit more changes per second, the time allowed for each change to become effective (before the next change will be modulated) is reduced. Thus, you get a greater delta-f because you must make sure the changes become visible quicker.

Example: If I was to transmit 1 bit per second, I could limit myself to really low frequencies, because I will probably be all right if each bit sent requires 0.5 seconds to reach the corresponding state of signal at the receiving end. A bandwidth of 1-2Hz may be sufficient. Trying to send 100 bits per second cannot be done if each bit would require 0.5 seconds to be visible at the receiver: During this time there are 50 other bits also modulated onto the signal so the receiver would see some kind of average of the 50 bits sent after 0.5s. No way to reconstruct the individual bits. That's why I need more bandwidth to allow greater delta-f's which allows the signal at the receiving side to change its state more quickly.

So whatever you do to get more information per second transmitted, you will have to provide more bandwidth, because more signal change(s) per second must be visible.

(This is all assuming the same required SNR margin. By reducing the SNR margin one may squeeze some more information onto a signal of a given bandwidth.)

To visualize the relationship between bandwidth and rate-of-change, you can take/simulate e.g. a simple low pass filter. Look at what happens at the filter's output when a given (sinusodial) input signal is "instantly" turned on/off: The output will only respond slowly to the quick change. If you modulate the input signal quicker you will begin to see that the output signal becomes more or less stable the quicker you modulate the input, up to a point where the input modulation cannot be seen on the output signal any more.

JimmyB
  • 3,823
  • 2
  • 18
  • 21
3

The fundamental reason can be loosely stated as "more bandwidth means the sooner you can be surprised", and only surprises can carry data. For base-band signals, this is pretty obvious: a higher bandwidth means a faster rise time, which means the signal can take on a new value faster. However, the same is true of carrier modulation signals. If you have an unmodulated (CW) carrier at 5.6 GHz, the signal is oscillating very quickly, but since the bandwidth is low, you can predict what it is going to be for a long period of time. Anything that deviates from that expected value, whether a change in amplitude, phase, or frequency, increases the bandwidth. The faster it diverges from the "predicted" oscillation, the higher the bandwidth.

Evan
  • 2,449
  • 10
  • 17
  • I don't get your point. What's the meaning of "surprised" in your context? Are you trying to explain that higher bandwidth can make more exact signal you want to modulate?? Does it mean that higher-order modulation needs more bandwidth(Assume that SNR is large enough and FSK is not used)? – 장영록 Dec 02 '16 at 07:25
2

As i understand, ASK does not need more bandwidth. If transmission power in transmitter is bigger, the amplitude of wave will be bigger. In that sense, ASK can be achieved by transmission power control.

Reading between the lines, you are failing to see that if you were to amplitude modulate a carrier with a single frequency, the spectrum goes from a single point to a "band" of frequencies. Try this: -

enter image description here

To the left you have the modulating signal (a single spectral point). Now if you amplitude modulated a carrier, the result is a spectral band ranging from \$F_C-F_M\$ through to \$F_C+F_M\$.

These are called sidebands and the more rapidly the base modulating signal changes, the further the upper and lower sidebands become from the carrier frequency. If you are wondering how this can happen just look-up the trigonometric identities of sine(A) multiplied by sin(B) because that is what AM modulation is - the multiplication of two signals.

So, transmission power control (as you put it) does actually produce side bands and this means a wider spectral occupancy.

If what i explained is correct, why does high bandwidth guarantee high data rate?

What you explained is incorrect. What I explained is correct.

Andy aka
  • 434,556
  • 28
  • 351
  • 777
1

Narrowband channels prevent full settling to final values, because of energy left over from the prior signaling event/baud/symbol. This residual energy, called InterSymbolInterference ISI, requires to be erased or to be overwritten or overridden by energy of the newest signaling event.

Higher bandwidths of your channel/wire/cable/antenna/bandpass/lowpass filter provide more timeconstants of settling (mag & phase) per unit.

In one-pole systems, each Tau provides 8.9dB [one Neper] of improved accuracy.

If your channel needs 40dB settling to support that 256-QAM constellation, you need at least 40/8.9 = 4+Tau. A full cycle allows 6.3 Tau of settling. You may be able to operate at 6.3/4 = 1.6 signaling events per cycle of bandwidth.

That goal ---- 1.6 events per cycle, places a severe burden on the receiver timing, because the receiver has only a tiny slice of time to perform an accurate measurement of mag/phase. Operating at 1.0 events per cycle allows some sample-time error (offset), some sample-time jitter, and some analog filtering to suppress KT noise.

analogsystemsrf
  • 33,703
  • 2
  • 18
  • 46
1

Using more bandwidth does NOT GUARANTEE higher data rate. I can achieve a data rate of 100 bits per second using 1000 Hz, 10,000 Hz, 100,000 Hz, or any other bandwidth you would like me to fill.

People are quoting Shannon's capacity theorem here as though it answers the question, it does not. The capacity equation is the absolute MAXIMUM data rate that could be supported given a bandwidth and signal to noise ratio. It does not say that a data rate below the maximum requires a certain bandwidth. It does not say that at all. What it does say, is that if your system is operating at capacity already, the only way you can increase the data rate is to increase your bandwidth or increase your SNR.

rbell
  • 111
  • 2