Skip to main content

Passband Amplitude Shift Keying (ASK)


Transmission of Binary Data by ASK

Whenever digital data needs to be transmitted over a communication channel, the information must first be converted into signals that the channel can carry. Two common transmission methods are:

  • Baseband Transmission
  • Bandpass Transmission

Baseband transmission sends digital pulses directly through a low-pass communication channel. Bandpass transmission first modulates the data onto a high-frequency carrier before transmission.

Main Idea
  • Baseband → Direct pulse transmission.
  • Bandpass → Carrier-based transmission.

Three Basic Modulation Techniques

Bandpass communication mainly uses three digital modulation techniques.

  1. Amplitude Shift Keying (ASK)
  2. Frequency Shift Keying (FSK)
  3. Phase Shift Keying (PSK)

Each technique modifies a different property of the sinusoidal carrier wave.

Technique Parameter Changed
ASK Amplitude
FSK Frequency
PSK Phase

1. Amplitude Shift Keying (ASK)

In ASK, binary information is represented by changing the amplitude of the carrier wave while keeping its frequency and phase constant.


Feature ASK FSK PSK
Amplitude Changes Constant Constant
Frequency Constant Changes Constant
Phase Constant Constant Changes
Noise Immunity Low Medium High
Typical Applications RFID, Optical Links Bluetooth, Paging Systems Wi-Fi, GPS, Satellite, Cellular Networks

✔ Baseband sends pulses directly over a low-pass channel.

✔ Bandpass sends data by modulating a carrier wave.

✔ ASK changes amplitude.

✔ FSK changes frequency.

✔ PSK changes phase.

✔ FSK and PSK are generally preferred because they are more robust against noise and nonlinear channel effects.


Amplitude Shift Keying (ASK) is a fundamental digital modulation technique in which the amplitude of a high-frequency sinusoidal carrier is varied in accordance with the digital information signal. In passband ASK, the modulated signal is centered around a carrier frequency, enabling efficient transmission over band-limited channels such as radio frequency (RF) links and optical communication systems.

In a binary ASK (BASK) system, the binary symbol '1' is represented by transmitting a carrier signal of amplitude Ac and frequency fc over the bit duration Tb, whereas the binary symbol '0' is represented by the absence of the carrier. Due to this characteristic, binary ASK is also referred to as On-Off Keying (OOK).

Baseband Signal: The input digital data represented as a unipolar or bipolar pulse train (e.g., 0 V for binary '0', +V for binary '1'). Its frequency components are centered around zero.

Passband Signal: The carrier amplitude is modulated according to the baseband signal. For BASK (OOK), the transmitted signal is: \[ s(t) = \begin{cases} A_c \cos(2 \pi f_c t), & \text{for binary '1'} \\ 0, & \text{for binary '0'} \end{cases} \] Here, \(A_c\) is the carrier amplitude and \(f_c\) is the carrier frequency.

The input binary sequence, represented as a unipolar pulse train, is multiplied with a sinusoidal carrier wave to produce the ASK signal.

Binary Data


Passband ASK Waveform



Binary 1 → High amplitude
Binary 0 → Low or zero amplitude

Passband ASK Receiver (Coherent Detection):

At the receiver, coherent detection is commonly employed for demodulation. This technique requires the generation of a local carrier that is synchronized in both frequency and phase with the transmitted carrier.

The received signal is multiplied by the synchronized carrier and subsequently passed through a low-pass filter or integrator over the bit duration Tb.

  • For binary '1': the integrator output is proportional to the signal energy, approximately Ac2Tb/2.
  • For binary '0': the integrator output is ideally zero in the absence of noise.

A decision device (threshold detector) compares the output with a predefined threshold to determine the transmitted symbol.

The objective of the receiver is to reliably distinguish between the presence and absence of the carrier in the received passband signal.



Contact Us

Name

Email *

Message *

Popular Posts

MATLAB Code for MUSIC

  MATLAB Code clc; clear; close all ; %% Step 1: Define Parameters M = 8; % Number of array sensors d = 0.5; % Sensor spacing (lambda/2) K = 2; % Number of signals N = 200; % Number of snapshots theta = [-20 30]; % True signal angles (degrees) SNR = 10; % Signal-to-noise ratio (dB) fprintf( 'Step 1: Parameters Initialized\n' ); %% Step 2: Generate Signal Sources t = 1:N; s1 = exp(1j*2*pi*0.05*t); s2 = exp(1j*2*pi*0.1*t); S = [s1; s2]; figure; plot(real(S(1,:))) title( 'Signal 1 (Real Part)' ) xlabel( 'Samples' ) ylabel( 'Amplitude' ) figure; plot(real(S(2,:))) title( 'Signal 2 (Real Part)' ) xlabel( 'Samples' ) ylabel( 'Amplitude' ) fprintf( 'Step 2: Source Signals Generated\n' ); %% Step 3: Construct Steering Matrix A = zeros(M,K); for k = 1:K A(:,k) = exp(-1j*2*pi*d*(0:M-1)'*sin(theta(k)*pi/180)); end fprintf( 'Step 3: Steering Matr...

Direction of Arrival (DoA) Online Simulator (using MUSIC)

Interactive DOA Simulator X-axis XY angle (deg): 45 XZ angle (deg): 30 Noise: 0.05 Y-axis XY angle (deg): 60 YZ angle (deg): 45 Noise: 0.05 Z-axis XZ angle (deg): 60 YZ angle (deg): 30 Noise: 0.05 Estimated DOA (deg): 0 Simulation Workflow and Mathematical Background This simulator demonstrates Direction of Arrival (DOA) estimation using three-axis sensor signals (X, Y, Z), Maximal Ratio Combining (MRC) , and the MUSIC algorithm . It allows interactive control of signal angles and noise for teaching purposes. 1. Signal Generation A pure sinewave signal of frequency f is projected onto three axes using user-defined angles in different planes: X-axis: θ XY , θ XZ Y-axis: θ XY , θ YZ Z-axis: θ XZ , θ YZ Mathematically, for each time sample t : x(t) = s(t) * cos(θ_xy_x) * cos(θ_xz_x) + n_x(t) y(t) = s(t) * sin(θ_xy_y) * cos(θ_yz_y) + n_y(t) z(t) = s(t) * sin(θ_xz_z) * sin(θ_yz_z) + n_z(t) wh...

Amplitude Demodulation Simulation

Instructions for Amplitude Modulation (AM) Step 1: Click on 'Generate Message' button to generate input message signal Step 2: Then click on 'Generate Carrier' button to generate carrier signal. The carrier frequency has to be more than the message frequency and You can change frequencies using sliders Step 3: Click on 'Generate Amplitude Modulated Signal' button to generate Amplitude Modulated Signal Step 4: Click the 'Show Frequency Spectrums' button to view the AM spectra. Here, the modulation index is defined as the ratio of the message signal amplitude to the carrier signal amplitude. You can adjust both values. 50 Hz Step 1: Generate Message 500 Hz Step 2: ...

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...

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 ...

Constellation Diagrams of ASK, PSK, and FSK (with MATLAB Code + Simulator)

Constellation Diagrams: ASK, FSK, and PSK Comprehensive guide to signal space representation, including interactive simulators and MATLAB implementations. 📘 Overview 🧮 Simulator ⚖️ Theory 📈 Q-function 📚 Resources BASK Modulation Transmits one of two signals: 0 or $\sqrt{E_b}$, representing binary 0 and 1. Simple but sensitive to noise. BFSK Modulation Transmits one of two signals: $\sqrt{E_b}$ on the Y-axis or $\sqrt{E_b}$ on the X-axis. These are orthogonal signals. BPSK Modulation Transmits $+\sqrt{E_b}$ or $-\sqrt{E_b}$ (antipodal signaling). Most efficient binary scheme. ...

Online Simulator for ASK, FSK, and PSK Signal Generation

Interactive Digital Signal Processing (DSP) Tutorial and Simulator for ASK, FSK, and BPSK modulation techniques. Try our new Digital Signal Processing Simulator!   •   Interactive ASK, FSK, and BPSK tools updated for 2025. Start Now Digital Modulation Visualizer: ASK, FSK, & BPSK Simulator Learn and visualize binary modulation techniques (ASK, FSK, BPSK) in real-time with adjustable carrier and sampling parameters. Perfect for DSP students and engineers. 📡 ASK Simulator 📶 FSK Simulator 🎚️ BPSK Simulator 📚 More Topics ASK Modulator FSK Modulator BPSK Modulator More Topics 1. ASK (Amplitude Shift Keying) Simulat...