Comparison

CTFT vs DTFT

When you analyse the frequency response of an RC circuit driven by a continuous voltage, you use the Continuous-Time Fourier Transform. After the ADC samples that signal at 8 kHz, the spectrum of the resulting sequence is computed via the Discrete-Time Fourier Transform. Both tools give a frequency-domain picture, but their domains, periodicity, and convergence conditions are fundamentally different.

ECE, EI

Side-by-side comparison

ParameterCTFTDTFT
Input signalContinuous-time signal x(t)Discrete-time sequence x[n]
Analysis formulaX(jω) = ∫_{-∞}^{∞} x(t)·e^{−jωt} dtX(e^{jω}) = Σ_{n=−∞}^{∞} x[n]·e^{−jωn}
Frequency variableω in rad/s, continuous and unbounded (−∞ to ∞)ω̂ in rad/sample, periodic with period 2π
Spectrum periodicityNon-periodic (aperiodic spectrum for aperiodic x(t))Always periodic with period 2π — fundamental property
Convergence conditionx(t) must be absolutely integrable: ∫|x(t)|dt < ∞x[n] must be absolutely summable: Σ|x[n]| < ∞
Inverse transformx(t) = (1/2π) ∫ X(jω)·e^{jωt} dωx[n] = (1/2π) ∫_{−π}^{π} X(e^{jω})·e^{jωn} dω
Relation to samplingApplied before ADCApplied after ADC; spectrum repeats at multiples of 2π
Computational useAnalytical tool; computed symbolicallyBasis for DFT/FFT; sampled version is DFT
Aliasing conditionNot directly applicableAliasing occurs if sampling frequency fs < 2fmax
Real exampleSpectrum of a single 10 µs RF pulse at 2.4 GHzFrequency response of a 64-tap FIR filter in MATLAB

Key differences

CTFT operates on continuous signals and produces a continuous, aperiodic spectrum measured in rad/s. DTFT operates on discrete sequences and its spectrum is always periodic with period 2π (in rad/sample) — this periodicity is a direct consequence of sampling. A key relation: if x[n] = x(nT), then X_DTFT(e^{jω}) = (1/T)·Σ X_CTFT(j(ω − 2πk)/T), showing spectral repetition. The DTFT cannot be computed directly on a computer (infinite sum); the DFT is its sampled, finite version.

When to use CTFT

Use the CTFT when working with continuous-time systems — for example, computing the bandwidth of an analog bandpass filter centred at 455 kHz used in an AM receiver's IF stage.

When to use DTFT

Use the DTFT when analysing discrete sequences or FIR/IIR filter responses — for example, plotting the frequency response H(e^{jω}) of a 64-point Hamming-windowed FIR low-pass filter designed for fs = 8 kHz.

Recommendation

For ECE exams, choose CTFT for continuous-time problems and DTFT for anything involving samples or filter coefficients. Know the 2π periodicity of DTFT by heart — it is tested directly. If the problem gives x[n] = δ[n] or a finite sequence, DTFT is the tool.

Exam tip: GATE asks you to find the DTFT of x[n] = a^n·u[n] for |a| < 1 — result is 1/(1 − a·e^{−jω}); also expect questions on the periodicity of DTFT and the condition for its existence.

Interview tip: Interviewers at DSP chip companies ask why DTFT is periodic — explain that sampling in time is multiplication by an impulse train, which causes convolution (repetition) in the frequency domain with period 2π.

More Signals Systems comparisons