Optics

Laser

Coherent monochromatic light from stimulated emission of radiation

A laser (Light Amplification by Stimulated Emission of Radiation) produces coherent, monochromatic, highly directional light. Based on Einstein's stimulated emission concept (1917). First built 1960. Foundation of fiber optics, barcode scanners, laser pointers, surgery, fusion research, atomic clocks. Spans wavelengths from far-IR to UV; powers from milliwatts to petawatts.

  • AcronymLight Amplification by Stimulated Emission of Radiation
  • Three propertiesCoherent, monochromatic, directional
  • First laserMaiman, ruby laser, 1960
  • Stimulated emissionEinstein's prediction (1917)
  • Power range~1 mW (pointer) to ~10¹⁵ W (NIF, brief pulses)
  • Wavelength rangeFar IR to soft X-ray

Interactive visualization

Press play, or step through manually. The visualization is yours to drive — try it before reading on.

Open visualization fullscreen ↗

Watch the 60-second explainer

A condensed visual walkthrough — narrated, captioned, under a minute.

How lasers work

StepProcess
1. PumpEnergy input excites atoms (electrical, optical, chemical)
2. Population inversionMore atoms in excited than ground state (non-equilibrium)
3. Spontaneous emissionSome excited atoms emit photons randomly
4. Stimulated emissionExisting photons trigger more identical photons → amplification
5. Cavity feedbackMirrors bounce light back; multiple passes amplify
6. OutputPartially transparent mirror lets fraction escape

Common laser types

TypeWavelengthUse
HeNe633 nm (red)Lab demos, alignment, scanners
Argon ion488, 514 nm (blue/green)Lab, light shows
Nd:YAG1064 nm (IR)Industrial, medical, military
CO₂10.6 µm (mid-IR)Cutting, welding
Excimer (KrF, ArF)248, 193 nm (UV)LASIK, lithography
Diode lasers~400-1700 nmPointers, communications, DVD/Blu-ray
Fiber laser (Yb-doped)~1030 nmIndustrial cutting, marking
Free-electron laser (FEL)Tunable, IR to X-rayResearch

JavaScript — laser concepts

// Coherence length (rough)
function coherenceLength(linewidth_Hz, c = 3e8) {
  return c / linewidth_Hz;
}

// Single-mode HeNe: ~1 MHz linewidth → ~300 m coherence
console.log(`HeNe coherence: ${coherenceLength(1e6).toFixed(0)} m`);

// Cavity stability: ABCD matrix etc — complex; just g-parameter
function cavityStability(g1, g2) {
  // 0 ≤ g1·g2 ≤ 1 for stable cavity
  return g1 * g2 >= 0 && g1 * g2 <= 1;
}

// Photon lifetime in cavity
function photonLifetime(L_meters, R_mirror1, R_mirror2, n = 1) {
  // τ = -L·n / (c·ln(R1·R2))
  // For R1·R2 close to 1
  const c = 3e8;
  return -L_meters * n / (c * Math.log(R_mirror1 * R_mirror2));
}

// 1m cavity, R1 = 0.99, R2 = 0.99
console.log(`Cavity τ: ${(photonLifetime(1, 0.99, 0.99) * 1e9).toFixed(2)} ns`);

// Laser intensity (CW)
function laserIntensity(power_W, beam_diameter_mm) {
  const area = Math.PI * Math.pow(beam_diameter_mm * 1e-3 / 2, 2);
  return power_W / area;  // W/m²
}

// 1 mW pointer, 2 mm beam
console.log(`1 mW pointer: ${laserIntensity(0.001, 2).toExponential(2)} W/m²`);

// 1 W laser, 1 mm beam (industrial cutting)
console.log(`1 W cutting laser: ${laserIntensity(1, 1).toExponential(2)} W/m²`);

// Pulse energy (Q-switched)
function qSwitchPulse(repetitionRate_Hz, avgPower_W) {
  return avgPower_W / repetitionRate_Hz;  // J per pulse
}

// 100 W average, 1 kHz rep rate, 5 ns pulses → peak power = J/(5e-9)
const pulse_J = qSwitchPulse(1000, 100);
console.log(`Pulse energy: ${pulse_J} J = ${pulse_J / 5e-9} W peak`);

// LASIK: very precise UV ablation
function lasikSettings() {
  return {
    laser: 'ArF excimer',
    wavelength: '193 nm',
    pulse_energy: '~1 mJ',
    pulse_rate: '~500 Hz',
    spot_size: '~1 mm',
    application: 'Reshape cornea, ~50 µm tissue removal'
  };
}
console.log(lasikSettings());

// Free electron laser parameters (rough)
function felParameters() {
  return {
    accelerator: 'Linac, ~10+ GeV electrons',
    undulator: 'Periodic magnetic structure',
    wavelength_tunable: '~10 nm to ~1 nm (X-ray)',
    pulse_duration: 'Femtosecond',
    peak_power: '~10 GW'
  };
}

Where lasers matter

  • Communications. Fiber optics (entire internet); laser diodes in transmitters/receivers.
  • Medicine. Surgery, ophthalmology (LASIK), cosmetic, diagnostic imaging.
  • Manufacturing. Cutting, welding, drilling, marking. Industrial fiber lasers replacing many traditional methods.
  • Research. Atomic physics, ultrafast processes, fusion, gravitational waves, atomic clocks.
  • Imaging. Confocal microscopy, OCT, lidar, holography.
  • Consumer. Optical drives, barcode scanners, laser printers, laser pointers, light shows.
  • Defense. Range-finding, target designation, directed energy weapons (early stages).

Common mistakes

  • Treating any concentrated light as laser. Lasers specifically use stimulated emission for coherence. Sunlight can be focused but isn't coherent or monochromatic.
  • Believing lasers are dangerous to look at universally. Class 1 lasers (most consumer) are safe in normal use. Higher classes (3R, 3B, 4) require eye protection. Always check class.
  • Confusing laser with LED. LED — spontaneous emission, broad spectrum, not coherent. Laser — stimulated emission, narrow spectrum, coherent.
  • Treating "monochromatic" as exact. Real lasers have finite linewidth. Highly stable lasers can have linewidth < Hz; typical lab lasers ~kHz to MHz.
  • Forgetting nonlinear effects. At high intensity, materials respond non-linearly — second harmonic generation, self-focusing, multiphoton absorption. Important for ultrafast / high-power lasers.
  • Confusing coherence with monochromaticity. Related but distinct. Coherence = phase relationship; monochromaticity = single frequency. Laser is both, but they can be partially separated (broadband coherent sources exist).

Frequently asked questions

How does a laser work?

Three steps. (1) Pump atoms in gain medium to excited states. (2) Spontaneous emission → photon emitted. (3) That photon stimulates more emission of identical photons (Einstein 1917). With "population inversion" (more atoms in excited than ground state) — chain reaction → exponential amplification. Optical cavity (mirrors at each end) bounces light, multiplies passes. One mirror partially transmissive lets some out as laser beam.

What makes laser light coherent?

Stimulated emission produces photons identical to the trigger — same wavelength, phase, direction, polarization. Light builds up in lockstep. Result — temporally coherent (same wavelength) and spatially coherent (same phase across the beam). Enables interference, holography, coherent communication.

What types of lasers exist?

By gain medium — Solid-state (ruby, Nd:YAG), gas (HeNe, CO₂), semiconductor (laser diodes), fiber (Yb-doped fiber), dye, free-electron, X-ray. By emission — continuous wave (CW) or pulsed (Q-switched, mode-locked). Wavelength tunable (dye, OPO) vs fixed.

How are lasers used in medicine?

Surgery — precision cutting (eye surgery, neurosurgery). LASIK — reshape cornea with excimer laser. Photodynamic therapy — destroy cancer with light-activated drugs. Tattoo removal — Q-switched lasers shatter ink particles. Cosmetic — laser hair removal, skin resurfacing. Diagnostic — optical coherence tomography (OCT), laser-based imaging.

How fast/precise can lasers be?

Mode-locked femtosecond lasers — pulses of 10⁻¹⁵ s (Nobel 1999). Attosecond pulses (10⁻¹⁸ s) — Nobel 2023, observe electron dynamics. Atomic clock lasers stable to 10⁻¹⁸ — best timing in physics. Pulse duration sets temporal resolution; very short pulses → see ultrafast processes.

What are laser-induced phenomena?

Beyond simple emission — high-intensity lasers cause plasma, multiphoton ionization, harmonic generation (high-frequency overtones), self-focusing, optical Kerr effect. Combined for: laser fusion (NIF), laser-driven particle acceleration, terahertz generation, lasers as research probes.

Why are lasers used in fiber optic networks?

Coherent light couples efficiently into fiber. Specific wavelengths (1310 nm, 1550 nm) chosen for low fiber attenuation. Modulation rate up to ~100 GHz/channel. Wavelength division multiplexing (WDM) — 100+ channels per fiber → 100+ Tbps. Modern internet built on laser technology.