2026-01-15·
Quantum Field Fluctuations in de Sitter Space
Analysis of vacuum fluctuations in expanding spacetime and their implications for inflationary cosmology.
Introduction
The scalar field in de Sitter space satisfies:
where the d'Alembertian in FRW coordinates takes the form:
Mode Expansion
We expand in terms of creation and annihilation operators:
The Bunch-Davies vacuum satisfies .
Power Spectrum
The power spectrum of fluctuations is given by:
For a massless field in de Sitter space:
This scale-invariant spectrum is a key prediction of inflation.
Numerical Example
import numpy as np
def hubble_parameter(H0, Omega_m, Omega_Lambda, z):
"""Compute H(z) for flat ΛCDM."""
return H0 * np.sqrt(Omega_m * (1 + z)**3 + Omega_Lambda)
def power_spectrum(H, k):
"""Scale-invariant power spectrum."""
return (H / (2 * np.pi))**2 * np.ones_like(k)
References
- Birrell & Davies, Quantum Fields in Curved Space (1982)
- Mukhanov, Physical Foundations of Cosmology (2005)