Material Physics

Plasma State

The fourth state of matter — ionized gas of electrons and nuclei, dominant in the universe

Plasma is the fourth state of matter — a partially or fully ionized gas with free electrons and positive ions. ~99% of visible matter in the universe is plasma (stars, interstellar medium, intergalactic gas). On Earth — lightning, neon signs, fluorescent bulbs, fusion reactors. Plasmas conduct electricity, respond to magnetic fields, and exhibit collective behavior.

  • ConstituentsFree electrons + positive ions (charged particles)
  • Universe~99% of visible matter is plasma
  • ExamplesStars, lightning, neon signs, plasma TVs, fusion plasma
  • Temperature~3000 K (gas discharge) to 10⁸ K (fusion)
  • Density range~10⁸ /m³ (interstellar) to 10³² /m³ (white dwarf core)
  • Plasma parameterΛ = 4πn·λ_D³ >> 1 for "real" plasma

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.

Examples of plasma

ExampleTDensity (/m³)Notes
Lightning~30,000 K~10²⁵Brief; locally very dense
Neon sign~10,000 K~10²⁰Gas discharge
Sun core1.5 × 10⁷ K~10³²Fusion plasma
Sun corona~10⁶ K~10¹⁵Hot, dilute
Solar wind~10⁵-10⁶ K~10⁷Streaming through space
Earth's ionosphere~1000-3000 K~10¹¹-10¹²UV-ionized
ITER fusion plasma~10⁸ K~10²⁰Magnetic confinement
Interstellar mediumvaries~10⁵-10⁷Mostly ionized H
Pulsars~10⁹ K10³⁵Extreme gravity, magnetic fields

JavaScript — plasma calculations

const k_B = 1.38e-23;
const e_charge = 1.602e-19;
const epsilon_0 = 8.854e-12;
const m_e = 9.11e-31;

// Debye length
function debyeLength(n_density, T_K) {
  return Math.sqrt(epsilon_0 * k_B * T_K / (n_density * e_charge * e_charge));
}

// Fusion plasma: n = 10²⁰ /m³, T = 10⁸ K
console.log(`Fusion λ_D: ${(debyeLength(1e20, 1e8) * 1000).toFixed(2)} mm`);
// ~0.2 mm — much smaller than reactor size (good)

// Solar wind: n = 5e6 /m³, T = 10⁵ K
console.log(`Solar wind λ_D: ${debyeLength(5e6, 1e5).toFixed(2)} m`);

// Plasma frequency
function plasmaFrequency(n_density) {
  return Math.sqrt(n_density * e_charge * e_charge / (epsilon_0 * m_e));
}

console.log(`Fusion plasma frequency: ${(plasmaFrequency(1e20) / (2 * Math.PI) / 1e9).toFixed(0)} GHz`);
console.log(`Ionosphere frequency: ${(plasmaFrequency(1e12) / (2 * Math.PI) / 1e6).toFixed(1)} MHz`);
// ~9 MHz — explains AM radio reflection from ionosphere

// Plasma parameter Λ (must be >> 1 for ideal plasma)
function plasmaParameter(n_density, T_K) {
  const lambda_D = debyeLength(n_density, T_K);
  return (4/3) * Math.PI * n_density * Math.pow(lambda_D, 3);
}

console.log(`Lab plasma Λ: ${plasmaParameter(1e15, 1e4).toExponential(2)}`);
console.log(`Solar wind Λ: ${plasmaParameter(5e6, 1e5).toExponential(2)}`);
// Both >> 1 — valid plasmas

// Magnetic confinement: gyroradius
function gyroradius(velocity, B, mass = m_e, charge = e_charge) {
  return mass * velocity / (charge * B);
}

// Electron in tokamak: 1 keV at 5 T
const v_e = Math.sqrt(2 * 1000 * e_charge / m_e);
console.log(`Electron gyroradius (1 keV, 5T): ${(gyroradius(v_e, 5) * 1e6).toFixed(1)} µm`);

// Ion gyroradius (deuterium): much larger
const m_d = 3.34e-27;
const v_d = Math.sqrt(2 * 1000 * e_charge / m_d);
console.log(`Deuteron gyroradius (1 keV, 5T): ${(gyroradius(v_d, 5, m_d) * 1000).toFixed(2)} mm`);

// Ionization energy of hydrogen
const E_H_ionize = 13.6;  // eV
const T_H_ionize = E_H_ionize * e_charge / k_B;
console.log(`H ionization T: ${T_H_ionize.toExponential(2)} K`);
// ~158,000 K — but Saha equation shows ionization significant at lower T due to entropy

Where plasma matters

  • Astrophysics. Stars, galactic dynamos, accretion disks, intergalactic medium.
  • Fusion energy. All approaches involve hot plasma. ITER, NIF, private startups.
  • Industrial processing. Plasma etching/deposition for semiconductors; plasma cutting/welding.
  • Lighting. Fluorescent, neon, plasma display panels.
  • Medical. Plasma sterilization, surgical scalpels.
  • Spacecraft. Ion thrusters; ionospheric communication; reentry plasma sheath.
  • Atmospheric/space weather. Auroras, solar flares affect ionosphere → comm disruption.

Common mistakes

  • Confusing "plasma TV" with regular plasma. Plasma TVs use small gas-discharge plasmas (real plasma). Most modern displays are LCD/OLED (not plasma).
  • Treating plasma as just hot gas. Crucial difference — collective behavior. Charged particles interact via long-range Coulomb forces, creating plasma-specific phenomena.
  • Forgetting electromagnetic interaction. Plasmas conduct electricity and respond to magnetic fields. MHD is essential at appropriate scales.
  • Confusing plasma frequency with cyclotron frequency. Plasma f = √(n·e²/ε₀·m) — collective oscillation. Cyclotron f = qB/m — single particle in magnetic field. Different physics.
  • Underestimating plasma's prevalence. 99% of visible universe! Most "matter" we see is plasma (stars). Solid Earth-like objects rare.
  • Treating cold plasma like hot. Cold plasma (room T, partial ionization) very different from fusion plasma (millions K, full ionization). Different physics; different applications.

Frequently asked questions

What is plasma?

Gas where many atoms are ionized (electrons stripped). Has free positive ions and free electrons. Crucially, charges interact collectively — a plasma's properties don't reduce to simple gas physics. Conducts electricity, responds to magnetic fields, supports plasma waves.

How is plasma the "fourth state of matter"?

Solid (atoms tightly bound) → liquid (atoms moving but interacting) → gas (atoms mostly free but neutral) → plasma (electrons separated from ions). Heat enough → atoms ionize → plasma. So plasma forms at very high T, or by other ionization (UV, electrical discharge).

What's most of the universe's matter as plasma?

Stars (mostly H-He plasma at ~10⁷ K cores). Sun's atmosphere (corona at ~10⁶ K). Interstellar medium (mostly ionized H by UV, T varies). Intergalactic gas. Pulsars (degenerate plasma). Even Earth's ionosphere (~80-1000 km altitude) is plasma.

How is fusion plasma different?

Fusion needs T ~ 100+ million K — much hotter than Sun's core. Confined by strong magnetic fields (tokamak) or inertia (laser implosion). Fully ionized, very hot, very low density. Density × time × T product (Lawson) determines feasibility. ITER etc working toward economic fusion.

What's a Debye length?

λ_D = √(ε₀·k·T / (n·e²)). Distance over which charges screen out electric fields in plasma. Sets scale for collective behavior. For a "real" plasma, λ_D << system size and many particles per Debye sphere. Otherwise it's just a few charged particles, not a plasma.

How is plasma used commercially?

Lighting — fluorescent, neon, plasma displays. Manufacturing — plasma etching (semiconductor industry), surface treatments. Medicine — sterilization, surgical plasma scalpels. Materials — plasma cutting/welding. Aerospace — ion thrusters use plasma propulsion. Communications — plasma antennas (developing).

What's magnetohydrodynamics (MHD)?

Theory combining fluid dynamics + electromagnetism for conducting fluids/plasmas. Equations include Maxwell's + Navier-Stokes. Used for: solar/stellar dynamos (magnetic field generation), planetary cores, tokamak plasma equilibrium, accretion disks, jets from supermassive black holes.