Asma Neji

The essentials that underpin all telecom concepts.

Key Concepts:

Why It Matters: Telecom revolves around mathematical modeling of signals.

Labs/Practice: Analyzed signal transformations in MATLAB.

Tools Used: MATLAB, Python (NumPy).

Lesson 1 – Foundations (Non-negotiable)

Telecommunications Engineering Self-Study – Asma’s Portfolio
February 2026 – Tunis


Why Foundations Matter So Much

Telecommunications is not primarily about hardware or protocols at first — it is about moving information reliably through a noisy, imperfect world.
Every later topic (modulation, coding, 5G, fiber, security attacks) builds directly on these ideas.

Think of this as learning the alphabet before writing novels.


Part A: Mathematics – The Language of Telecom

(≈60–70% of the “brain work”)

You don’t need to become a pure mathematician, but telecom uses very specific math tools almost daily.

1. Linear Algebra (Vectors & Matrices)

Signals and channels are often multi-dimensional.

Example
A transmitted symbol in QAM is a point in 2D space:
s = [I, Q]
Received signal: r = H × s + n (matrix multiplication + noise vector).
Linear algebra lets you invert or estimate H.

2. Complex Numbers

The single most important “trick” in telecom.

A sinusoid like cos(ωt) or sin(ωt) can be written compactly as the real or imaginary part of e^{jωt} (Euler’s formula: e^{jθ} = cosθ + j sinθ).

Why this matters hugely:

Quick example
In QPSK, the four symbols are at angles 45°, 135°, 225°, 315° → simply 1+j, -1+j, -1-j, 1-j (after scaling).
Adding noise → the received point moves in the complex plane; decision is nearest constellation point.

3. Probability & Statistics

Noise is random → everything probabilistic.

Key mindset
In telecom we rarely say “this will work”; we say “this will work with 99.999% probability” or “BER < 10^{-5}”.

4. Fourier Series & Fourier Transform

Any (reasonable) signal = sum of sinusoids at different frequencies.

Intuition example
A square wave looks sharp in time → many high-frequency harmonics in frequency. Sharp edges = wide bandwidth.

5. Laplace Transform

Generalizes Fourier for stability analysis (mostly analog/control side, but useful).

6. Convolution

The mathematical operation behind every linear filter.

Output y(t) = x(t) * h(t) (input convolved with impulse response).

Practice tip
A matched filter (optimal for detecting known signal in AWGN) is literally the time-reversed conjugate of the signal → convolution peaks at correct timing.

Quick self-check questions (try mentally):