Skip to main content

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.




BASK (Binary ASK) Modulation

Transmits one of two signals: 0 or -√Eb, where Eb​ is the energy per bit. These signals represent binary 0 and 1.

BFSK (Binary FSK) Modulation

Transmits one of two signals: +√Eb​ (On the y-axis, the phase shift of 90 degrees with respect to the x-axis, which is also termed phase offset) or √Eb (on x-axis), where Eb​ is the energy per bit. These signals represent binary 0 and 1.

BPSK (Binary PSK) Modulation

Transmits one of two signals: +√Eb​ or -√Eb (they differ by 180 degree phase shift), where Eb​ is the energy per bit. These signals represent binary 0 and 1.

Signal Space Simulator

Visualize BASK, BPSK, and BFSK Constellation Diagrams with Noise Control.

Theory & Key Points

  • BASK: Bit '0' is low voltage/no signal; bit '1' is high level voltage.
  • BFSK: Maps bit '0' to 'j' and bit '1' to '1'. Signals are orthogonal.
  • BPSK: 0° shift for binary '1' (+1) and 180° shift for binary '0' (-1). Read more [↗]
Constellation diagrams of ASK, PSK, and FSK

Figure 1: Constellation diagrams of ASK, PSK, and FSK. The x-axis shows the real part, y-axis shows the imaginary part.

The spacing between signaling points determines the Probability of Error (Pe). ASK is prone to bit errors due to shorter distances ($\sqrt{E_b}$). PSK performs better in noisy channels with a distance of $2\sqrt{E_b}$.

MATLAB Code Implementation

ASK vs FSK vs PSK: Comparison Table

Parameter BASK BFSK BPSK
Abbreviation Amplitude Shift Keying Frequency Shift Keying Phase Shift Keying
Noise Immunity Very Low High Highest
Bit Rate Lower Moderate Higher

Signal Representation Formulas

Mathematically, the transmitted signals for binary modulations can be expressed as:

BPSK Equation:

$$s(t) = \sqrt{\frac{2E_b}{T_b}} \cos(2\pi f_c t + \theta)$$

where theta is 0 or pi radians.


BFSK Equation:

$$s(t) = \sqrt{\frac{2E_b}{T_b}} \cos(2\pi f_i t)$$

where f_i is the mark or space frequency. (different frequencies for bit 0 or 1).

BFSK Constellation: Orthogonal vs. Antipodal Analysis

In signal space theory, the "distance" between signaling points determines the error performance. Let's compare Orthogonal BFSK with the Antipodal benchmark.

📐 Orthogonal BFSK

Used when frequencies are separated by $1/2T_b$. The symbols are perpendicular.

Coordinates:
$s_1 = (\sqrt{E_b}, 0)$
$s_2 = (0, \sqrt{E_b})$
Distance: $d = \sqrt{2E_b} \approx 1.41\sqrt{E_b}$

↔️ Antipodal (BPSK)

The "Gold Standard" of power efficiency where signals are mirror images.

Coordinates:
$s_1 = +\sqrt{E_b}$
$s_2 = -\sqrt{E_b}$
Distance: $d = 2\sqrt{E_b}$

"Because the distance between points in Antipodal signaling ($$2\sqrt{E_b}$$) is greater than in Orthogonal BFSK ($$\sqrt{2E_b}$$), BPSK requires approximately 3dB less power to achieve the same Bit Error Rate (BER) as BFSK."

Signal Space & The Q-Function

An interactive guide to understanding modulation boundaries and error probabilities.

Signal Space Simulator

Watch symbols cross the Decision Boundary (Red Line) as noise increases.

The Q-Function: Tail Probability

The Q-function $Q(x)$ tells us the probability that a Gaussian noise sample exceeds a certain distance $x$. This is the mathematical "Red Area" of errors.

Normalized Distance ($x$): 1.5
Error Probability $Q(x)$: 0.0668

Modulation Comparison Table

Modulation Distance ($d$) BER Formula Efficiency
BPSK $2\sqrt{E_b}$ $Q(\sqrt{2E_b/N_0})$ Highest (Best)
BFSK $\sqrt{2E_b}$ $Q(\sqrt{E_b/N_0})$ Moderate (-3dB)
BASK $\sqrt{E_b}$ $Q(\sqrt{E_b/2N_0})$ Lowest

How to Calculate Normalized Distance ($x$)

In digital communications, the argument $x$ inside the $Q(x)$ function represents the ratio of the signal's "safety margin" to the noise magnitude. In an AWGN channel, the noise standard deviation is defined as: $\sigma = \sqrt{N_0 / 2}$

BPSK

Distance to boundary is $\sqrt{E_b}$

$x = \frac{\sqrt{E_b}}{\sqrt{N_0/2}}$
$x = \sqrt{\frac{2E_b}{N_0}}$

BFSK

Distance to boundary is $\frac{\sqrt{E_b}}{\sqrt{2}}$

$x = \frac{\sqrt{E_b}/\sqrt{2}}{\sqrt{N_0/2}}$
$x = \sqrt{\frac{E_b}{N_0}}$

BASK

Distance to boundary is $\frac{\sqrt{E_b}}{2}$

$x = \frac{\sqrt{E_b}/2}{\sqrt{N_0/2}}$
$x = \sqrt{\frac{E_b}{2N_0}}$
Summary: Notice the multipliers ($2$, $1$, and $1/2$). These represent a **6dB total difference** between BPSK and BASK. BPSK is $3$dB better than BFSK, and BFSK is $3$dB better than BASK.

The 3dB BPSK Advantage in compare to BFSK

The performance of a modulation scheme is directly proportional to the Euclidean Distance between signaling points. Let's derive why BPSK outperforms BFSK by exactly 3dB.

Step 1: Distance in BPSK

BPSK uses Antipodal signaling. The distance between $+\sqrt{E_b}$ and $-\sqrt{E_b}$ is:

$$d_{BPSK} = 2\sqrt{E_b} \implies d^2_{BPSK} = 4E_b$$

Step 2: Distance in BFSK

Orthogonal BFSK points are perpendicular. Using the Pythagorean theorem:

$$d_{BFSK} = \sqrt{2E_b} \implies d^2_{BFSK} = 2E_b$$

The 3dB Conclusion

Taking the ratio of the squared distances:

$\frac{d^2_{BPSK}}{d^2_{BFSK}} = \frac{4E_b}{2E_b} = 2$
$10 \log_{10}(2) \approx 3 \text{ dB}$

BPSK is 3dB more power-efficient than BFSK. In practical terms, BPSK requires half the transmitter power to achieve the same reliability as BFSK.

📡

ASK Use Case

Primarily used in Optical Fiber communications and simple IR remote controls.

📻

FSK Use Case

Widely used in Caller ID systems and low-frequency radio modems.

📶

PSK Use Case

Used in Bluetooth, Wi-Fi, and Satellite communications (GPS).

Frequently Asked Questions

What is the main advantage of BPSK over BFSK?

BPSK is more bandwidth-efficient and has a lower Bit Error Rate (BER) for the same Signal-to-Noise Ratio (SNR) compared to BFSK.

Why is noise added to the constellation diagram?

In real-world channels, AWGN (Additive White Gaussian Noise) causes the signaling points to "spread" into clusters. If the noise is high enough, these clusters overlap, leading to decision errors at the receiver.

Contact Us

Name

Email *

Message *

Popular Posts

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

UGC NET Electronic Science June 2025 Question Paper with Answer Key & Detailed Solutions

Home / UGC NET PYQ / June 2025 Solved UGC NET Electronic Science June 2025 Question Paper with Answer Key and Full Explanations 📥 Download Question Paper (PDF) 2025 2024 2023 2022 2021 2020 Explanations 1.  Answer: Option (3) For forming a p-type semiconductor, the dopant must be a trivalent impurity (three valence electrons) so that it creates acceptor levels and holes become the majority carriers. Among the given elements, boron (B) is a group-III element (trivalent). Arsenic (As) and phosphorus (P) are group-V (pentavalent) donors that produce n-type material, and germanium (Ge) is a group-IV element usually used as the semiconductor, not as an acceptor dopant. Hence, doping an intrinsic semiconductor with B produces a p-type semiconductor. 2.  Answer: Option (4) The ohmic resistance of a JFET at zero gate bias is given by the standard relation: R DS(on) = V P / I DSS ...

BER vs SNR for M-ary QAM, M-ary PSK, QPSK, BPSK, ...(MATLAB Code + Simulator)

Bit Error Rate (BER) & SNR Guide Analyze communication system performance with our interactive simulators and MATLAB tools. 📘 Theory 🧮 Simulators 💻 MATLAB Code 📚 Resources BER Definition SNR Formula BER Calculator MATLAB Comparison 📂 Explore M-ary QAM, PSK, and QPSK Topics ▼ 🧮 Constellation Simulator: M-ary QAM 🧮 Constellation Simulator: M-ary PSK 🧮 BER calculation for ASK, FSK, and PSK 🧮 Approaches to BER vs SNR What is Bit Error Rate (BER)? The BER indicates how many corrupted bits are received compared to the total number of bits sent. It is the primary figure of merit f...

Online Simulator for ASK, FSK, and PSK

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

Theoretical BER vs SNR for binary ASK, FSK, and PSK (with MATLAB Code + Simulator)

📘 Overview & Theory 🧮 MATLAB Codes 🧮 Q-function 📚 Further Reading Bit Error Rate (BER) Equations In ASK, noise directly affects the signal amplitude, making it the most vulnerable since the data is carried in amplitude changes. In FSK, data is represented by frequency variations, and because noise typically impacts amplitude more than frequency, FSK is more robust than ASK. In PSK, data is encoded in the signal phase, and BPSK specifically uses 180-degree phase shifts, creating the greatest separation between signal points and therefore achieving the lowest bit error rate (BER) for the same power level. BER formulas for ASK, FSK, and PSK modulation schemes. ASK BER = 0.5 × erfc(0.5 × √SNR) FSK BER = 0.5 × erfc(√(SNR / 2)) PSK BER = 0.5 × erfc(√SNR) ...

UGC NET Electronic Science December 2024 Question Paper with Answer Key & Detailed Solutions

Home / UGC NET PYQ / June 2025 Solved UGC NET Electronic Science December 2024 Question Paper with Answer Key and Full Explanations 📥 Download Question Paper (PDF) 2025 2024 2023 2022 2021 2020 Q.1 Answer: Option (3) Q.2 Answer: Option (3) Solution 1. JMP SHORT LABEL Intrasegment (within the same code segment). Direct jump. ❌ Not intersegment indirect. 2. JMP 5000H:2000H Intersegment (far jump because both CS and IP are specified). Direct jump (address is explicitly given). ❌ Not indirect. 3. JMP [2000H] The destination address is taken from memory location 2000H. This is indirect. In 8086, a far indirect jump can use a memory operand containing both IP and CS (depending on operand size), making it an intersegment indirect jump. ✅ Correct answer. 4. JMP [BX] Indirect jump through memory addressed by BX. Usually intrasegment (near indirect jump). ❌ Not in...

Q-function in BER vs SNR Calculation

Q-function in BER vs. SNR Calculation In the context of Bit Error Rate (BER) and Signal-to-Noise Ratio (SNR) calculations, the Q-function plays a significant role, especially in digital communications and signal processing . What is the Q-function? The Q-function is a mathematical function that represents the tail probability of the standard normal (Gaussian) distribution. Specifically, it is defined as: Q(x) = (1 / sqrt(2π)) ∫ₓ∞ e^(-t² / 2) dt In simpler terms, the Q-function gives the probability that a standard normal random variable exceeds a value x . It is the complementary cumulative distribution function (CCDF) of the standard Gaussian distribution. The Role of the Q-function in BER vs. SNR The Q-function is the standard tool for calculating the Bit Error Rate (BER) in digital communication systems like Binary Phase Shift Keying (BPSK) or Quadrature Phase Shift Keying (QPSK) , where noise follows a Gaussian dis...