Skip to main content

Periodicity of Continuous and Discrete Signals


Understanding Periodicity of Sinusoidal Signals: Continuous-Time vs Discrete-Time Signals

Periodicity is one of the most important concepts in Signals and Systems, and Digital Signal Processing (DSP). Many students know the formula \(T=\frac{2\pi}{\omega}\), but often get confused when similar questions appear in the context of discrete-time signals.

In this article, we will clearly understand the difference between periodicity in continuous-time (analog) signals and discrete-time (digital) signals with examples and exam-oriented shortcuts.

What is a Periodic Signal?

A signal is said to be periodic if it repeats itself after a fixed interval.

Continuous-Time (Analog) Signal

A continuous-time signal \(x(t)\) is periodic if there exists a positive number \(T\) such that:

\[ x(t+T)=x(t) \]

The smallest positive value of \(T\) is called the fundamental period.

Discrete-Time (Digital) Signal

A discrete-time signal \(x[n]\) is periodic if there exists a positive integer \(N\) such that:

\[ x[n+N]=x[n] \]

The smallest positive integer \(N\) is called the fundamental period.

Notice that in digital signals the period must always be an integer.


Periodicity of Continuous-Time Sinusoids

Consider the analog sinusoidal signal:

\[ x(t)=A\cos(\omega t+\phi) \]

where:

  • \(A\) = Amplitude
  • \(\omega\) = Angular frequency (rad/s)
  • \(\phi\) = Phase angle

For periodicity,

\[ \omega T = 2\pi \]

Therefore,

\[ T=\frac{2\pi}{\omega} \]

This is the standard formula most students remember.

Example 1

Given:

\[ x(t)=5\cos(20t) \]

Here,

\[ \omega=20\ \text{rad/s} \]

Therefore,

\[ T=\frac{2\pi}{20} =\frac{\pi}{10} \]

Hence, the fundamental period is:

\[ \boxed{\frac{\pi}{10}\ \text{seconds}} \]

Why This Formula Does Not Directly Work for Digital Signals

Consider the digital signal:

\[ x[n]=A\cos(\omega n+\phi) \]

A common mistake is to write:

\[ N=\frac{2\pi}{\omega} \]

This is not always correct.

The correct periodicity condition is:

\[ \omega N = 2\pi k \]

where \(k=1,2,3,\ldots\)

\[ N=\frac{2\pi k}{\omega} \]

for some integer \(k\). The signal is periodic only if \(N\) becomes an integer.


Periodicity of Discrete-Time Sinusoids

For

\[ x[n]=A\cos(\omega n+\phi) \]

the signal is periodic if

\[ \frac{\omega}{2\pi} \]

is a rational number.

That means:

\[ \frac{\omega}{2\pi} = \frac{p}{q} \]

where \(p\) and \(q\) are integers.

Then the fundamental period is:

\[ N=q \]

after reducing the fraction to its lowest terms.


Example 2

Determine the period of

\[ x[n]=\cos\left(\frac{\pi}{4}n\right) \]

We have:

\[ \frac{\omega}{2\pi} = \frac{\pi/4}{2\pi} = \frac{1}{8} \]

Thus,

\[ N=8 \]

The fundamental period is:

\[ \boxed{8} \]

Example 3

Determine the period of

\[ x[n]=\cos\left(\frac{3\pi}{10}n\right) \]

We have:

\[ \frac{\omega}{2\pi} = \frac{3\pi/10}{2\pi} = \frac{3}{20} \]

Since 3 and 20 are coprime:

\[ N=20 \]

Therefore:

\[ \boxed{\text{Fundamental Period}=20} \]

Continuous-Time vs Discrete-Time Periodicity

Property Continuous-Time Signal Discrete-Time Signal
Signal Form \(A\cos(\omega t+\phi)\) \(A\cos(\omega n+\phi)\)
Period Condition \(\omega T=2\pi\) \(\omega N=2\pi k\)
Period Formula \(T=\frac{2\pi}{\omega}\) \(N=\frac{2\pi k}{\omega}\)
Period Value Real Number Integer
Requirement Always Periodic \(\omega/2\pi\) must be rational

Summary

  1. \(T=\frac{2\pi}{\omega}\) is valid for continuous-time (analog) sinusoids.
  2. For discrete-time sinusoids, the correct condition is \(\omega N = 2\pi k\).
  3. A discrete-time sinusoid is periodic only when \(\frac{\omega}{2\pi}\) is rational.
  4. Reduce \(\frac{\omega}{2\pi}\) to \(\frac{p}{q}\). The fundamental period is \(q\).
  5. For the GATE-style example, both \(\boxed{0.1\pi}\) and \(\boxed{0.3\pi}\) produce a fundamental period of 20.

Autocorrelation and Periodicity

The Autocorrelation function measures the correlation of a signal with a delayed version of itself. It is a powerful tool for finding repeating patterns or periodicity in a noisy signal.

For a random process: $R_{xx}(\tau) = E[x(t)x(t+\tau)]$
For an energy signal: $R_{xx}(\tau) = \int_{-\infty}^{\infty} x(t)x(t+\tau) dt$

When a signal $x(t)$ is transmitted through a wireless medium, it often picks up Additive White Gaussian Noise (AWGN):

$y(t) = x(t) + n(t)$

Crucially, the periodicity of the autocorrelation of $y(t)$ remains the same as $x(t)$. Autocorrelation effectively "filters" the random noise components, which only contribute to the signal at zero lag ($\tau = 0$).

Wiener–Khinchin Theorem

This theorem links the time domain to the frequency domain by stating that the Power Spectral Density (PSD) of a Wide-Sense Stationary (WSS) process is the Fourier Transform of its autocorrelation function.

$S_X(f) = \mathcal{F}\{R_X(\tau)\} = \int_{-\infty}^{\infty} R_X(\tau) e^{-j2\pi f \tau} d\tau$

Note: WSS is assumed because it ensures the autocorrelation depends only on the time difference $\tau$, not the absolute time $t$.

Read More: about Autocorrelation and Periodicity



Contact Us

Name

Email *

Message *

Popular Posts

Hybrid Beamforming | Page 1

Beamforming Techniques Hybrid Beamforming... Page 1 | Page 2 | Hybrid Beamforming: Hybrid beam formation was developed to address some of the limitations of digital pre-coding approaches. Every antenna element is connected to an RF chain in digital pre-coding (beam forming) method. We also know that each RF chain is in charge of providing a separate data stream between the transmitter and the receiver. We know that a larger number of independent data streams leads to higher data rates. It has a spatial multiplexing feature for MIMO. As a result, we may assume that switching from MIMO to massive MIMO will benefit us more in terms of spatial multiplexing in massive MIMO, where each antenna is coupled to a single RF chain. We'll proceed with a definition of hybrid beam forming. Overview of hybrid beam forming with example: Unlike digital beam forming, more than one antenna element is connected to a single RF chain in hybr...

MATLAB Code for 8-PSK, 16-PSK, ...

📘 Overview & Theory 🧮 MATLAB Code for BPSK, QPSK, 8-PSK, 16-PSK, 32-PSK 🧮 Simulator for m-ary PSK 📚 Further Reading   MATLAB Code for BPSK, QPSK, 8-PSK, 16-PSK, 32-PSK clc; clear all; close all; rng(10) M = 8; % M = 2, 4, 8, 16, 32, etc. N_Bits = 2520; Phase = 0; data_info_bit = randi([0,1],N_Bits,1); data_temp = bi2de(reshape(data_info_bit,N_Bits/log2(M),log2(M))); modData = pskmod(data_temp,M,Phase); figure(1); scatterplot(modData); channelAWGN = 15; rxData2 = awgn(modData, channelAWGN); figure(2); scatterplot(rxData2); demodData = pskdemod(rxData2,M,Phase);   for BPSK, Constellation Size, M = 2 for QPSK, M = 4 for 8-PSK, M = 8, and so on    Output Figure: 8-PSK Modulation Figure: 8-PSK Demodulation after adding AWGN Noise Using the above MATLAB code you'll able be to modulate and demodulate 2-PSK, 4-PSK, 8-PSK, 16-PSK, 32-PSK and so on.  16-PSK   Fig: 16-PSK In this above code ' M ' is the number of the conste...

UGC NET Electronic Science Previous Year Question Papers with Solutions

Home / Engineering & Other Exams / UGC NET 2026 PYQ ⬇️ Download Papers and Solutions 📋 Exam Pattern 💡 Preparation Tips ❓ FAQs 📊 Exam Highlights: Electronic Science (88) Feature Details Junior Research Fellowship (JRF) ₹37,000 + HRA per month Eligibility M.Sc/M.Tech in Electronics (55%) Validity of Certificate JRF (3 Years) | Lectureship (Lifetime) 📥 Download UGC NET Electronics PDFs Complete collection of previous year question papers, answer keys and explanations for Subject Code 88. Start Downloading 📂 View All Question Papers June 2025 - Question Paper Download PDF June 2025 - Solved Paper + Explanation ...

MIMO Channel Matrix | Rank and Condition Number

MIMO / Massive MIMO MIMO Channel Matrix | Rank and Condition...   The channel matrix in wireless communication is a matrix that describes the impact of the channel on the transmitted signal. The channel matrix can be used to model the effects of the atmospheric or underwater environment on the signal, such as the absorption, reflection or scattering of the signal by surrounding objects. When addressing multi-antenna communication, the term "channel matrix" is used. Let's assume that only one TX and one RX are in communication and there's no surrounding object. Here, in our case, we can apply the proper threshold condition to a received signal and get the original transmitted signal at the RX side. However, in real-world situations, we see signal path blockage, reflections, etc.,  (NLOS paths [↗]) more frequently. The obstruction is typically caused by building walls, etc. Multi-antenna communication was introduced to address this issue. It makes diversity app...

OFDM Symbols and Subcarriers Explained

This article explains how OFDM (Orthogonal Frequency Division Multiplexing) symbols and subcarriers work. It covers modulation, mapping symbols to subcarriers, subcarrier frequency spacing, IFFT synthesis, cyclic prefix, and transmission. Step 1: Modulation First, modulate the input bitstream. For example, with 16-QAM , each group of 4 bits maps to one QAM symbol. Suppose we generate a sequence of QAM symbols: s0, s1, s2, s3, s4, s5, …, s63 Step 2: Mapping Symbols to Subcarriers Assume N sub = 8 subcarriers. Each OFDM symbol in the frequency domain contains 8 QAM symbols (one per subcarrier): Mapping (example) OFDM symbol 1 → s0, s1, s2, s3, s4, s5, s6, s7 OFDM symbol 2 → s8, s9, s10, s11, s12, s13, s14, s15 … OFDM sym...