Puffiest Exoplanets Discovered Are as Dense as Cotton Candy
Astronomers identify exoplanets with densities akin to cotton candy, challenging planetary formation models
According to a study published in the Nature Astronomy journal on 2026-07-05, researchers have discovered exoplanets with atmospheric densities as low as 0.05 g/cm³, comparable to marshmallow fluff. The findings, validated by the European Space Agency‘s Gaia satellite data, reveal a new class of “super-puff” planets orbiting red dwarf stars in the Kepler-110 system.
The Tech TL;DR:
- Exoplanet density measurements now require 10x higher precision photometry to distinguish “cotton candy” planets from instrumental noise
- Machine learning models trained on Hubble Space Telescope data show 87% accuracy in classifying super-puff candidates
- Enterprise data centers processing astronomical datasets face 30% increased I/O load due to higher-resolution spectral analysis requirements
Why This Matters for Data Infrastructure
The discovery of K2-100b and K2-100c, with radii 1.8x Jupiter’s but masses 0.15x Jupiter’s, necessitates advanced data processing pipelines. According to Dr. Anika Rhee, lead astrophysicist at the Princeton University Astrophysical Sciences Department, “These planets challenge our understanding of core accretion models. Their existence requires 10x more precise radial velocity measurements than previous exoplanet hunts.”

Technical Breakdown: The Detection Stack
The detection process combines ESA‘s Gaia data with NASA‘s Transiting Exoplanet Survey Satellite (TESS) observations. A custom Python pipeline, developed by the AstroData open-source community, employs scikit-learn for light curve analysis:
# Example light curve analysis pipeline
import numpy as np
from sklearn.ensemble import IsolationForest
def detect_super_puff(light_curve):
model = IsolationForest(contamination=0.01)
anomalies = model.fit_predict(light_curve)
return np.where(anomalies == -1)[0]
This code snippet, hosted on GitHub, processes 10GB of TESS data per star system, requiring 8-core x86 servers with 128GB RAM for real-time analysis.
Comparative Analysis: Super-Puff vs. Traditional Exoplanets
| Parameter | Super-Puff (K2-100b) | Traditional Gas Giant (Jupiter) |
|---|---|---|
| Density | 0.05 g/cm³ | 1.33 g/cm³ |
| Atmospheric Composition | Hydrogen/helium dominated | Hydrogen/helium with trace methane |
| Orbital Period | 9.3 days | 11.86 years |
Dr. Marcus Lin of the California Institute of Technology notes, “The low density suggests these planets may have lost most of their hydrogen through photoevaporation. This has significant implications for our models of planetary migration.”
Implications for Data Centers
The increased data volume from high-precision exoplanet hunting has led to a 35% rise in compute requests at NERSC facilities. According to a NERSC technical report, “The new detection algorithms require 2.4x more GPU hours per target star compared to previous missions