Planetary Science
Moon Phases
New, crescent, quarter, gibbous, full — same physics, predictable cycle every 29.5 days
Moon phases — the apparent shape of the Moon as seen from Earth — depend on its position relative to Earth and Sun. New (Sun side, dark to us), crescent, first quarter, waxing gibbous, full (opposite Sun), waning gibbous, last quarter, waning crescent. Cycle takes 29.5 days (synodic month). Different from sidereal month (27.3 days; orbit relative to stars). Critical for tides, calendars, seasons.
- Synodic month29.530 days (full cycle of phases)
- Sidereal month27.322 days (orbit relative to stars)
- 8 named phasesNew, waxing crescent, first quarter, waxing gibbous, full, waning gibbous, last quarter, waning crescent
- Eclipse alignmentSolar (new moon, perfect line); Lunar (full moon, line)
- Earth-Moon distance variationPerigee 357,000 km; Apogee 405,000 km
- Apparent angular size variation~10% (perigee vs apogee)
Interactive visualization
Press play, or step through manually. The visualization is yours to drive — try it before reading on.
Watch the 60-second explainer
A condensed visual walkthrough — narrated, captioned, under a minute.
The phase cycle
| Phase | Day in cycle | Appearance |
|---|---|---|
| New moon | 0 | Dark (between Sun and Earth) |
| Waxing crescent | ~3-4 | Thin sliver, eastern sky after sunset |
| First quarter | ~7 | Half lit, right side (Northern Hem) |
| Waxing gibbous | ~10-11 | More than half lit |
| Full moon | ~14-15 | Fully lit, opposite Sun |
| Waning gibbous | ~18-19 | Less than full |
| Last quarter | ~21-22 | Half lit, left side |
| Waning crescent | ~25-26 | Thin sliver, eastern sky before sunrise |
JavaScript — moon phases
// Synodic vs sidereal months
const SYNODIC = 29.530; // days
const SIDEREAL = 27.322; // days
const TROPICAL_YEAR = 365.2422;
const synodic_per_year = TROPICAL_YEAR / SYNODIC;
console.log(`Synodic months per year: ${synodic_per_year.toFixed(3)}`); // 12.37
// Moon orbital speed
const a_MOON = 384400;
const v_moon = 2 * Math.PI * a_MOON / (SIDEREAL * 86400) * 1000;
console.log(`Moon orbital speed: ${(v_moon/1000).toFixed(1)} km/s`);
// Phase angle from time since new moon
function phaseAngle(days_since_new) {
return (days_since_new / SYNODIC) * 360; // degrees
}
console.log(`At day 7: ${phaseAngle(7).toFixed(0)}°`); // ~85° = first quarter
console.log(`At day 14.75: ${phaseAngle(14.75).toFixed(0)}°`); // 180° = full
// Illuminated fraction
function illuminatedFraction(phase_angle_deg) {
return 0.5 * (1 - Math.cos(phase_angle_deg * Math.PI / 180));
}
console.log(`At first quarter: ${(illuminatedFraction(90) * 100).toFixed(1)}%`);
console.log(`At full: ${(illuminatedFraction(180) * 100).toFixed(1)}%`);
// Tide amplitude
function tideAmplitude(phase_deg, basemoon = 1.0, baseSun = 0.46) {
// Spring tide at new/full; neap at quarters
const moon = basemoon;
const sun = baseSun * Math.cos(phase_deg * Math.PI / 180);
return moon + sun;
}
console.log(`New/full tide: ${tideAmplitude(0).toFixed(2)} (max)`);
console.log(`Quarter tide: ${tideAmplitude(90).toFixed(2)} (min)`);
Why moon phases matter
- Tides. Spring/neap cycle (twice monthly).
- Calendars. Lunar and lunisolar systems still in use.
- Eclipses. Predicting when alignments work for solar/lunar eclipses.
- Astronomy timing. New moon best for deep-sky observation (no Moon glare).
- Wildlife behavior. Many species respond to lunar cycles.
- Public awareness. Most accessible astronomical phenomenon.
- Cultural significance. Holidays, religious dates often lunar-based.
Common misconceptions
- Moon phases caused by Earth's shadow. NO — phases are due to angle between Sun and Moon. Earth's shadow only causes lunar eclipses (rare events).
- Same Moon face always lit. Same FACE always faces Earth (tidal locking). But different parts ARE lit at different phases.
- Moon visible only at night. Visible during day too — about half the time.
- Phase determines weather. No causation. Lunar weather effects (if any) are tiny.
- Full moons cause "lunatic" behavior. Studies show no statistical effect on crime, hospital admissions, etc.
- New moon is invisible. Yes, by definition — Sun and Moon align; no reflected sunlight reaches us.
Frequently asked questions
Why do we see phases?
Moon doesn't produce its own light. We see reflected sunlight. As Moon orbits Earth, the angle between Sun, Moon, and us changes. Sometimes we see the lit hemisphere (full Moon) — sometimes the dark side faces us (new Moon) — sometimes part lit (crescents and gibbous). Moon always half-lit by Sun; we see different angles.
Why are there 8 named phases?
Convenient divisions. Two extremes (new and full), two halves (first quarter, last quarter), and four intermediates. Modern telescopes/observers see continuous progression; named phases are markers. Calendars and rituals use them widely.
What's the difference between sidereal and synodic month?
Sidereal — Moon's orbit relative to STARS, 27.3 days. Synodic — phase cycle (relative to Sun), 29.5 days. Difference: Earth moves around Sun while Moon orbits Earth; Moon must catch up to align with Sun again. So phase cycle is longer than orbital period.
Why don't we see solar eclipses every new moon?
Moon's orbit is tilted ~5° to Earth's orbital plane. Most new moons miss solar alignment. Only when new moon happens NEAR Earth's orbital plane (twice per year, "eclipse seasons") can solar eclipse occur. Same for lunar eclipses (full moon plus right alignment). 4-5 solar eclipses per year on average.
How do moon phases affect tides?
Strongly. Moon's gravity stretches Earth → tides. When Sun aligns with Moon (new or full), tides reinforce → SPRING tides (high amplitude). When perpendicular (quarters), they partially cancel → NEAP tides (low amplitude). Spring/neap cycle = 14.7 days (half synodic month).
Are moon phases related to lunar months in calendars?
Yes — many cultures used lunar calendars. Synodic month ~29.5 days, so 12 lunar months = 354 days (vs 365 solar). Islamic calendar is purely lunar (12-month year drifts through seasons). Hebrew, Chinese have lunisolar — adjust with leap months. Modern Gregorian (solar) doesn't follow Moon.
Why does Moon look bigger near horizon?
Optical illusion (Ponzo or apparent distance theory). Moon's actual size is constant. Brain compares Moon to nearby objects on horizon vs empty sky. Different apparent contexts → different perceived size. Photograph from same camera shows Moon is same diameter at zenith vs horizon.