Tell me more ×
Electrical Engineering Stack Exchange is a question and answer site for electronics and electrical engineering professionals, students, and enthusiasts. It's 100% free, no registration required.

Nyquist-Shannon sampling theorem states that sufficient condition for sampling is sampling rate higher than twice the highest frequency.

By highest frequency, does this refer to the highest frequency content of the signal's Fourier transform?

share|improve this question

2 Answers

up vote 4 down vote accepted

Yes. If the signal contains higher frequency parts, aliasing will occur and the signal will be distorted, this is why all digital recording equipment has filters that remove the signal parts above f/2. It is also why audio is recorded using at least 44kHz and not 40. If you recorded sound using 40kHz sampling rate and still wanted the frequency response to xtend to 20kHz you would need a filter with infinitely steep slope (pass 19.999kHz, completely block 20.000kHz).

It is also why recording using higher sampling rates is better - it allows the device to have a filter with less steep slope (for example, pass 20kHz, completely block 48kHz in case of 96kHz sampling rate) so there are less phase distortions.

If the signal has limited bandwidth and does not start at 0Hz (radio signals for example), then the sampling rate has to be greater than twice the bandwidth, but not maximum frequency (if the minimum frequency component is 1MHz and maximum is 1.1MHz then sampling rate has to be higher than 200kHz). For audio, the maximum frequency is the same as bandwidth, since audio usually starts at very close to 0Hz.

share|improve this answer
What happens if a signal is only one sine curve (e.g. sin(6$\pi$ x))? – user25148 May 27 '12 at 9:43
If the signal is sine and the frequency is abofe f/2 then if you tried to sample it as a baseband signal (saying that the frequency range goes from 0 all the way to te frequency of your sine) you will get another sine with frequency less than f/2, this is called aliasing. If, however, you knew the frequency range of your signal (say, 3f < x <3.5f) then you could recreate it, as your signal then would be limited bandwidth (with a lowest frequency more than 0Hz). – Pentium100 May 27 '12 at 10:43

Yes, if the signal bandwidth starts at DC (0 Hz).

Otherwise, the highest frequency can be much higher as long as the bandwidth of the content is less than the sample rate, and the band doesn't cross N*(Fs/2) for any integer N. If there's no baseband signal, then the high frequency alias has nothing to alias against. That is how undersampling works.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.