Lesson 13 of 15
Galactic Rotation Curves
Galactic Rotation Curves
Stars and gas orbit the center of a galaxy under gravity. The circular velocity at radius depends on the total mass enclosed within that radius:
Three Regimes
| Mass distribution | ||
|---|---|---|
| Uniform sphere ( const) | (solid body) | |
| Point mass / Keplerian | const | |
| Flat rotation curve | const |
The Dark Matter Problem
Observations of spiral galaxies show that const far beyond the visible disk — a flat rotation curve. This cannot be explained by visible matter alone. For a flat curve, the enclosed mass must grow as:
This implies vast amounts of unseen dark matter in an extended halo.
The Milky Way
Our Galaxy has a roughly flat rotation curve with km/s at the Sun's position kpc. Using m, the enclosed mass within 8.5 kpc is roughly .
Your Task
Implement three functions. All constants must be defined inside each function.
circular_velocity_m_s(M_enclosed_kg, r_m)— returns in m/senclosed_mass_flat_rotation(v_c_m_s, r_m)— returns in kg (mass implied by a flat rotation curve)kpc_to_m(kpc)— returns distance in metres ( m)
Use N m² kg⁻².
Python runtime loading...
Loading...
Click "Run" to execute your code.