Planetary Science

Mars Polar Ice Caps

Twin caps of water ice and frozen CO₂ — seasonal and permanent layers tell Mars's history

Mars has two polar ice caps — at north and south poles. The PERMANENT (residual) caps are mostly water ice (north) or water + CO₂ ice (south). SEASONAL caps grow each winter from CO₂ frost (~25% of atmosphere freezes onto poles, then sublimates back in spring). Combined, they hold enough water for a global ocean ~30 m deep. Critical for future human Mars missions — water for drinking, fuel, agriculture.

  • North polar capMostly water ice; 1000 km diameter, ~3 km thick
  • South polar capWater + CO₂ ice; smaller, 350 km diameter
  • Total water ice~5 million km³ (could fill ~30 m global ocean)
  • CO₂ seasonal exchange~25% of atmosphere freezes/sublimates each Mars year
  • Water below south polePossible liquid water lake (Mars Express radar, 2018)
  • Polar layered depositsLayers preserve climate history

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.

The two polar caps

PropertyNorthSouth
Diameter~1000 km~350 km
Composition (residual)Water iceWater ice + CO₂ ice cap on top
Thickness~3 km~3 km (but smaller area)
Seasonal cap (winter CO₂)Down to ~60° latitudeDown to ~50° latitude
Layered depositsYes (climate record)Yes
Subglacial water?Probably notPossibly (radar evidence)

Seasonal CO₂ cycle

Mars's atmosphere varies seasonally:

  • Northern winter — CO₂ freezes onto north pole. Mars pressure drops.
  • Northern spring/summer — CO₂ sublimates from north pole; pressure rises. Then southern winter begins, freezing south.
  • Net effect — ~25% of atmosphere transports between hemispheres over a Mars year.

JavaScript — polar ice calculations

// Estimate water volume from cap dimensions
function capWaterVolume(radius_km, thickness_km) {
  // Cap roughly conical or paraboloidal — use 1/2 × cylinder volume as approximation
  return 0.5 * Math.PI * radius_km * radius_km * thickness_km;  // km³
}

console.log(`North cap volume: ${capWaterVolume(500, 3).toFixed(0)} km³`);

// Equivalent global ocean depth if melted
function globalOceanDepth(volume_km3, planet_radius_km = 3389) {
  const surface_area_km2 = 4 * Math.PI * planet_radius_km * planet_radius_km;
  return volume_km3 / surface_area_km2 * 1000;  // meters
}

console.log(`5 million km³ as global ocean: ${globalOceanDepth(5e6).toFixed(0)} m deep`);

// CO₂ pressure at saturation (T-dependent)
function CO2SaturationPressure_K(T_K) {
  // Approximate Antoine equation at low T
  // log P = A - B/(T+C); for CO₂: A=9.377, B=1294, C=-2.93
  return 1e5 * Math.pow(10, 9.377 - 1294 / (T_K - 2.93));  // Pa
}

console.log(`CO₂ saturation at 150 K: ${CO2SaturationPressure_K(150).toFixed(0)} Pa`);
// ~750 Pa — close to Mars surface pressure → CO₂ freezes!

// Heat to sublimate ice
function sublimationEnergy(mass_kg, latentHeat = 2.83e6) {
  // L_sublimation for water = 2.83 MJ/kg
  return mass_kg * latentHeat;
}

// Mars perihelion vs aphelion solar flux
const flux_perihelion = 1361 * (1.0 / 1.381) ** 2;
const flux_aphelion = 1361 * (1.0 / 1.666) ** 2;
console.log(`Perihelion flux: ${flux_perihelion.toFixed(0)} W/m²`);
console.log(`Aphelion flux: ${flux_aphelion.toFixed(0)} W/m²`);
console.log(`Variation: ${((flux_perihelion / flux_aphelion - 1) * 100).toFixed(0)}%`);

Why polar ice matters

  • Future human missions. Water for crew, oxygen, fuel synthesis. Polar ice is most accessible.
  • Climate history. Layered deposits preserve millions of years of Mars climate.
  • Atmospheric science. Seasonal CO₂ cycle is unique to Mars.
  • Astrobiology. Subglacial liquid water (if confirmed) — possible habitat.
  • Comparative planetology. Earth, Mars, Triton — frozen CO₂ phenomena.
  • Sample return. Polar ice samples could reveal ancient atmosphere composition.
  • Resource economics. ISRU water vs Earth-launched water — orders of magnitude cost difference.

Common misconceptions

  • Mars polar ice is mostly CO₂. Most is WATER ice. CO₂ is seasonal frost; permanent CO₂ only on south residual cap.
  • Caps don't change. Constantly changing seasonally — winters lay down dry ice, summers vapor it.
  • Caps look like Earth's Antarctic. Different — Mars's caps are dry, with CO₂ frost; Antarctica is water ice with snow.
  • All Mars water is in poles. Subsurface ground ice extends to mid-latitudes; possibly more H₂O than poles alone.
  • CO₂ ice = water ice in behavior. Different sublimation T, energy. Solid CO₂ at Mars conditions sublimates directly to gas.
  • Polar ice can be used directly as water. Drilling, melting, purification needed. Plus dust contamination.

Frequently asked questions

What's in the Mars polar ice caps?

North cap — mostly water ice (~3 km thick, 1000 km diameter). South cap — mostly water ice with permanent CO₂ ice cap on top (smaller, ~350 km). Both have additional seasonal CO₂ frost in winter that sublimates in spring. Cap composition asymmetry is unexplained — climate history?

How much water is in Mars's polar caps?

~5 million cubic kilometers — equivalent to a global ocean ~30 meters deep if melted and spread over Mars surface. Plus ground ice (subsurface) extends to mid-latitudes. Mars probably had MORE water early in its history; lost some to space when atmosphere thinned.

Did Mars have liquid water?

Yes, ancient Mars (3-4 billion years ago) was warmer and wetter. Riverbeds, lake floors, hydrated minerals. Today: liquid water mostly impossible at surface (low pressure → boils + freezes simultaneously). Possible subsurface aquifers; brines (salty water) might exist temporarily. Mars Express found possible subglacial liquid water lake at south pole (2018 — debated).

What's the seasonal CO₂ cycle?

Each winter, ~25% of Mars's atmospheric CO₂ freezes onto the cold winter pole — adds significant mass to ice cap. Pressure drops globally. Each spring, CO₂ sublimates back, restoring atmosphere. Effect — surface pressure varies by ~25% over a Mars year. No analog on Earth (water is too small fraction).

What did Phoenix find?

Phoenix lander (2008) at high northern latitudes. Found water ice ~5 cm below surface (visible after digging). Confirmed perchlorates in soil. Limited by power loss when Martian winter cut sunlight; lander couldn't survive winter.

How are polar layered deposits useful?

They preserve millions of years of climate history. Layered structure visible in cross-section (revealed by erosion, drilling). Each layer reflects past climate state — Mars's orbital obliquity and eccentricity vary over millennia, driving climate cycles (similar to Earth's Milankovitch cycles).

What about future missions to extract water?

Critical for human Mars missions. ISRU (in-situ resource utilization) — extract water from permafrost or polar ice. Use water for drinking, oxygen (electrolysis), and rocket fuel (LOX/methane via Sabatier). NASA, SpaceX both planning ISRU. SpaceX's Mars architecture relies on harvested Mars water for return trip.