Not all light sources used in fiber optic transmitters are the same. Two of the most common are LEDs (Light Emitting Diodes) and laser diodes. While both can convert electrical signals into light pulses for transmission down a fiber, they differ fundamentally in how they produce light — and this difference has major, measurable consequences for network performance, especially over longer distances.
This article explains spectral width — one of the most important distinguishing characteristics between LEDs and lasers — from first principles, and shows why this single property determines which technology is appropriate for which type of fiber optic network.
1. What Is Spectral Width?
Spectral width is the range of wavelengths a light source emits around its nominal center wavelength. Even though we describe a source as emitting “850 nm light” or “1310 nm light,” no real source emits a single, perfectly pure wavelength — every real light source emits a spread, or band, of wavelengths.
flowchart TD
A[Ideal Single Wavelength - theoretical only] -.-> B[Real Sources Always Have Spread]
B --> C["LED: Wide Spectral Width (20-100+ nm)"]
B --> D["Laser: Narrow Spectral Width (<0.1 to few nm)"]The width of this spread is typically measured as FWHM (Full Width at Half Maximum) — the range of wavelengths where the emitted power is at least half of the peak power.
2. Why LEDs Have Wide Spectral Width
2.1 Spontaneous Emission
LEDs generate light through spontaneous emission — when electrons in the semiconductor material fall from a higher energy state to a lower one, releasing photons at essentially random times, independent of each other.
Since these electrons exist across a range of slightly different energy levels within the material’s energy bands, the released photons have a range of different energies, and since a photon’s wavelength is directly related to its energy, this range of energies translates directly into a wide range of wavelengths — resulting in wide spectral width.
2.2 Why Laser Diodes Have Narrow Spectral Width
Laser diodes, by contrast, generate light through stimulated emission (explained in detail in the laser transmitter block diagram article). Critically:
- Stimulated emission produces photons that are essentially identical in phase, direction, and wavelength to the photon that triggered them.
- The laser cavity (formed by mirrors, or a distributed grating in DFB lasers) acts as a resonant filter, reinforcing only specific wavelengths that match the cavity’s resonant condition while suppressing others through constructive/destructive interference.
This combination — stimulated emission plus cavity resonance — concentrates nearly all the emitted energy into a very narrow band of wavelengths, producing coherent light with a dramatically narrower spectral width than an LED.
3. Typical Spectral Width Comparison
| Source Type | Typical Spectral Width (FWHM) | Coherence |
|---|---|---|
| LED | 20–100+ nm | Incoherent |
| Fabry-Pérot (FP) Laser | 1–5 nm | Partially coherent (multiple longitudinal modes) |
| DFB Laser | <0.1 nm (often much narrower, sub-picometer in premium devices) | Highly coherent (single longitudinal mode) |
4. Why Spectral Width Matters: Chromatic Dispersion
The practical, real-world consequence of spectral width is chromatic dispersion — the phenomenon where different wavelengths of light travel at slightly different speeds through an optical fiber, due to the fiber material’s refractive index varying with wavelength.
4.1 How This Causes Signal Degradation
When a transmitter sends a pulse of light, that pulse actually contains a small range of wavelengths (its spectral width). As this pulse travels down the fiber:
- The different wavelengths within the pulse travel at very slightly different speeds.
- Over distance, this causes the pulse to spread out in time — a phenomenon called pulse broadening.
- If pulses broaden enough, adjacent bit pulses start to overlap with each other, a problem called Inter-Symbol Interference (ISI).
- ISI causes the receiver to have difficulty correctly distinguishing between adjacent bits, increasing the Bit Error Rate (BER).
flowchart LR
A["Narrow pulse transmitted<br/>(clean 1-0-1 pattern)"] --> B["Wavelengths within pulse<br/>travel at slightly different speeds"]
B --> C["Pulse broadens over distance"]
C --> D["Adjacent bits overlap<br/>(Inter-Symbol Interference)"]
D --> E["Increased Bit Error Rate"]4.2 Why This Limits LED-Based Links to Short Distances
Since LEDs have a much wider spectral width than lasers, the pulse-broadening effect from chromatic dispersion accumulates much faster over distance with LED-based transmitters. This is the primary reason LEDs are only practical for short-distance, lower-speed links, while lasers (especially DFB lasers) are required for long-distance and/or high-speed links.
5. Comparison Table: LED vs Laser
| Characteristic | LED | Laser Diode |
|---|---|---|
| Emission Mechanism | Spontaneous emission | Stimulated emission |
| Spectral Width | Wide (20–100+ nm) | Narrow (<0.1 to few nm) |
| Coherence | Incoherent | Coherent |
| Output Power | Lower (~ -20 to -10 dBm typical) | Higher (0 to +10 dBm typical) |
| Modulation Speed | Slower (limited to ~hundreds of Mbps typically) | Fast (multi-Gbps to 100+ Gbps capable) |
| Cost | Lower | Higher (DFB especially) |
| Typical Fiber Type | Multimode | Single-mode (though VCSELs are used with multimode too) |
| Typical Distance | Short (<2 km) | Short to very long (2 km to 100+ km, depending on type) |
| Common Application | Legacy/low-cost short LAN links, some POF (Plastic Optical Fiber) applications | Virtually all modern Ethernet, telecom, and DWDM/CWDM systems |
6. Why LEDs Are Still Used (In Limited Cases)
Despite their limitations, LEDs still have niche applications:
- Very short, low-cost links: e.g., some older 10/100 Mbps multimode Ethernet standards historically used LEDs.
- Plastic Optical Fiber (POF) systems: Automotive and short-run industrial applications where extreme precision isn’t needed, and LED’s lower cost and simpler driving circuitry are advantageous.
- Lower power consumption and cost in applications where the extremely high data rates and long distances enabled by lasers simply aren’t required.
Modern high-speed Ethernet standards (1G, 10G, 40G, 100G+) almost universally use laser sources (VCSEL for short multimode links, DFB for longer single-mode links) because of the bandwidth-distance limitations LEDs impose.
7. Real-World Example: Multimode vs Single-Mode Link Design
A network engineer is asked to design two separate links:
- A 50-meter link within a single data center rack row, running 10G Ethernet: A VCSEL-based laser transceiver (e.g., 10GBASE-SR) over multimode fiber is the standard, cost-effective choice — LEDs would not support the required 10 Gbps data rate at all, since LED modulation speed is far too slow.
- A 30 km link between two campus buildings, running 10G Ethernet: A DFB laser transceiver (e.g., 10GBASE-ER) over single-mode fiber is required — the narrow spectral width of the DFB laser keeps chromatic dispersion low enough to maintain signal integrity across the full 30 km distance. An LED would be completely unusable here, both due to insufficient output power and unacceptable dispersion-related pulse broadening.
7.1 Python: Simple Chromatic Dispersion Impact Estimator
This simplified script estimates pulse spreading due to chromatic dispersion, illustrating why spectral width matters as distance increases. (Note: this is a simplified educational model, not a precision engineering tool.)
def estimate_pulse_spreading(spectral_width_nm, dispersion_ps_nm_km, distance_km):
"""
Estimate pulse spreading (in picoseconds) due to chromatic dispersion.
dispersion_ps_nm_km: fiber's dispersion coefficient (typically ~17 ps/nm/km for standard single-mode fiber at 1550nm)
"""
spreading_ps = spectral_width_nm * dispersion_ps_nm_km * distance_km
return spreading_ps
# LED example: wide spectral width, short distance
led_spread = estimate_pulse_spreading(spectral_width_nm=50, dispersion_ps_nm_km=17, distance_km=2)
print(f"LED pulse spreading over 2 km: {led_spread} ps")
# DFB Laser example: narrow spectral width, long distance
laser_spread = estimate_pulse_spreading(spectral_width_nm=0.1, dispersion_ps_nm_km=17, distance_km=30)
print(f"DFB Laser pulse spreading over 30 km: {laser_spread} ps")Output:
LED pulse spreading over 2 km: 1700 ps
DFB Laser pulse spreading over 30 km: 51.0 psEven though the laser link is 15 times longer, its pulse spreading is far smaller than the LED’s — clearly illustrating why narrow spectral width enables both higher speed and longer distance simultaneously.
8. Best Practices
- Use laser-based transceivers (VCSEL or DFB) for any modern Ethernet deployment above 100 Mbps or beyond very short distances — LEDs are effectively obsolete for mainstream networking.
- Choose VCSEL-based transceivers for short multimode links (data center, campus LAN) where cost matters more than maximum distance.
- Choose DFB laser-based transceivers for single-mode, long-distance, or DWDM/CWDM links where narrow spectral width is essential to control chromatic dispersion.
- When troubleshooting unexpectedly high error rates on longer fiber links, consider chromatic dispersion as a possible cause, especially if using older or lower-cost transceivers with wider spectral width than ideal for the distance.
- Always match transceiver reach specifications (SR, LR, ER, ZR, etc.) to actual link distance requirements, factoring in some margin — as covered in the laser performance characteristics article.
9. Troubleshooting Spectral-Width-Related Issues
| Symptom | Likely Cause | Diagnostic Step |
|---|---|---|
| High BER on a long single-mode link using a lower-cost transceiver | Excessive chromatic dispersion from wider-than-ideal spectral width | Check transceiver spec (FP vs DFB); upgrade to narrower-spectral-width DFB transceiver |
| Link works fine at short test distance, fails when deployed at full distance | Chromatic dispersion accumulating over the added distance | Recalculate dispersion budget for the true distance; verify transceiver reach rating |
| Older LED-based equipment failing to meet new higher-speed requirements | LED fundamentally can’t support required modulation speed | Replace with a laser-based (VCSEL/DFB) transceiver rated for the target data rate |
| DWDM channel crosstalk with adjacent channels | Excess spectral width or wavelength drift (also see laser performance article) | Verify actual spectral width and wavelength stability against ITU grid requirements |
10. Summary
The difference between LED and laser spectral width comes down to their fundamental light-generation mechanism: LEDs use spontaneous emission, producing a wide spread of wavelengths, while lasers use stimulated emission combined with cavity resonance, producing a narrow, coherent band of wavelengths. This single property — spectral width — directly determines how much chromatic dispersion a signal will experience over distance, which in turn determines the maximum practical distance and data rate a given light source can reliably support. This is precisely why modern high-speed, long-distance fiber optic networks rely almost exclusively on laser-based transmitters rather than LEDs.