Siksha Sarovar

Siksha Sarovar (sikshasarovar.com) is a free educational web application that helps students in India learn programming and prepare for academic and competitive exams. The platform offers structured coding courses (C, C++, Python, Java, HTML, CSS, PHP, Power BI, AI, Machine Learning, Data Science), complete university curriculum notes for BCA/MCA students with previous year question papers, Class 10 and Class 12 CBSE/HBSE school notes, and dedicated preparation material for SSC, UPSC, Banking, Railway and other government exams. Browsing the site is completely free and requires no account. Users may optionally sign in with Google solely to save their learning progress, quiz scores and personal preferences across devices.

Privacy Policy | Terms of Service | Contact Siksha Sarovar | About Siksha Sarovar

v4.0.9 · PWA
Siksha Sarovar logo
Siksha Sarovar
Your Learning Universe

Siksha Sarovar is a free e-learning platform for coding courses, BCA university notes and competitive exam preparation. Optional Google sign-in saves your learning progress across devices.

Initializing knowledge base…
Compiling modules 0%

Transmission Media & Shannon Capacity

Lesson 4 of 15 in the free Computer Networks notes on Siksha Sarovar, written by Rohit Jangra.

Transmission Media & Shannon Capacity

Transmission media is the physical path between transmitter and receiver. The choice of medium determines maximum data rate, distance, cost, and immunity to electromagnetic interference.

---

1. Guided (Wired) Media

Guided media uses a physical conductor to guide signals:

MediumMax SpeedMax DistanceCostEMI ImmunityTypical Use
UTP Cat5e1 Gbps100 mVery lowPoorOffice LANs, patch cables
UTP Cat6a10 Gbps100 mLowPoorModern office LAN, server rooms
STP10 Gbps100 mMediumGood (shielded)Industrial environments, Token Ring
Coaxial (Thin)10 Mbps185 mMediumGoodEarly Ethernet, cable TV local drop
Coaxial (Thick)10 Mbps500 mMediumGoodCable TV trunk lines
Single-mode Fibre100 Gbps+100+ kmHighExcellent (no EMI)WAN backbone, ISP, undersea cables
Multi-mode Fibre10 Gbps2 kmHighExcellentCampus backbone, data centre interconnects

Why Twisted Pair Cables Work

Twisting the two conductors causes the magnetic fields from each wire to cancel each other out, reducing crosstalk and electromagnetic interference. More twists per metre = better noise rejection. STP adds a metallic foil or braid shield for additional protection in high-noise environments.

---

2. Unguided (Wireless) Media

MediumFrequency RangeRangeObstacle PenetrationUse Case
Radio Waves3 kHz – 1 GHzLong (national/global)Penetrates wallsAM/FM broadcast, mobile networks
Microwaves1 – 300 GHzShort, line-of-sightBlocked by hills and buildingsSatellite, Wi-Fi (5 GHz), 4G/5G cellular
Infrared300 GHz – 400 THzVery short (metres)Cannot penetrate wallsTV remote, IrDA devices

---

3. Signal Impairments

3.1 Attenuation

Attenuation is the loss of signal energy as it travels through the medium. Signal power decreases with distance. Measured in decibels (dB). Compensated by amplifiers (analog) or repeaters (digital).

3.2 Distortion

Distortion changes the shape of the signal. In composite signals, different frequency components travel at slightly different speeds (phase velocity varies with frequency), causing them to arrive at different times. This is called dispersion.

3.3 Noise

Noise TypeCauseImpact
Thermal (Johnson) NoiseRandom electron motion due to temperatureUnavoidable; sets minimum noise floor; proportional to temperature
Induced NoiseElectromagnetic fields from motors, fluorescent lightsCorrupts data on cables running near sources
CrosstalkSignal from one conductor induces voltage in adjacent conductorCommon in UTP bundles
Impulse NoiseSudden spikes from lightning, power surges, switchingCauses burst errors; difficult to prevent

---

4. Performance Metrics

MetricDefinitionFormula / Unit
BandwidthRange of frequencies the channel can carryHz (Hertz)
ThroughputActual measured data rate (always ≤ bandwidth)bps
Propagation SpeedSpeed signal travels through medium~2×10⁸ m/s in copper/fibre
Propagation TimeTime for signal to travel from sender to receiverDistance ÷ Propagation Speed
WavelengthPhysical distance signal travels in one periodλ = v ÷ f
LatencyTotal delay: Propagation + Transmission + Queuing + Processingmilliseconds

---

5. Shannon Capacity Theorem (Noisy Channel)

Shannon's theorem gives the theoretical maximum data rate for a noisy channel:

C = B × log₂(1 + SNR)

  • C = Maximum channel capacity (bps)
  • B = Bandwidth of the channel (Hz)
  • SNR = Signal-to-Noise Ratio (linear value, not dB)

Converting SNR dB to linear: SNR_linear = 10^(SNR_dB ÷ 10)

Worked Example 1 — Standard Telephone Channel

Problem: Telephone channel B = 3000 Hz, SNR = 30 (linear). Find maximum capacity C.

C = B × log₂(1 + SNR)
C = 3000 × log₂(1 + 30)
C = 3000 × log₂(31)
C = 3000 × 4.954
C ≈ 14,862 bps  ≈  14.86 kbps

Answer: Maximum capacity ≈ 14.86 kbps

Worked Example 2 — Finding Required SNR

Problem: Channel B = 4000 Hz, required C = 20,000 bps. Find the minimum SNR needed.

20000 = 4000 × log₂(1 + SNR)
5 = log₂(1 + SNR)
2⁵ = 1 + SNR
32 = 1 + SNR
SNR = 31
Exam Tip: Shannon formula is C = B × log₂(1+SNR). Always confirm if SNR is linear or dB — if dB, convert first using SNR_linear = 10^(SNR_dB/10). This numerical appears in most exams.

---

6. Nyquist Theorem (Noiseless Channel)

For a noiseless channel, the Nyquist theorem gives:

C_Nyquist = 2 × B × log₂(M)

Where M = number of discrete signal levels.

FeatureShannon TheoremNyquist Theorem
ChannelNoisy (realistic)Noiseless (theoretical)
VariableSNRSignal levels M
FormulaC = B × log₂(1+SNR)C = 2B × log₂(M)
UseAbsolute upper boundGuides modulation design

Study Deep: Shannon in Real Systems

  • ADSL uses Shannon's theorem to dynamically adjust modulation to line quality — different frequency bands on the telephone line get different modulation levels based on their measured SNR. This is why broadband speed varies by distance from the telephone exchange.
  • Wi-Fi 6 and 5G use QAM-1024 modulation to approach the Shannon limit on high-SNR channels, packing 10 bits per symbol.
  • Shannon capacity is a hard upper bound: no encoding or modulation scheme, however clever, can exceed it on a given channel.
  • When both Shannon and Nyquist apply, the actual maximum capacity is the lower of the two values.