Relativistic Doppler Effect
The Relativistic Doppler Effect
The classical Doppler effect shifts sound frequencies when source and observer move relative to each other. Light has a similar effect, but with a crucial difference: because of time dilation, there is a frequency shift even for transverse (sideways) motion.
Longitudinal Doppler
For a source moving directly away from the observer at velocity (recession), the observed frequency is:
For a source moving directly toward the observer (approach):
where and is the emitted frequency.
Behaviour
| Receding factor | Approaching factor | |
|---|---|---|
| (no shift) | (no shift) | |
| (redshifted by half) | (blueshifted double) | |
Notice that at : , so the observed frequency is halved.
Symmetry Property
For any speed , the product of the receding and approaching factors equals :
This is a useful sanity check.
Cosmological Redshift
Galaxies receding from us (due to cosmic expansion) have their light redshifted. The redshift parameter quantifies this. A galaxy at has its light frequency halved.
Your Task
Implement:
doppler_receding(f0, v)— observed frequency when source moves awaydoppler_approaching(f0, v)— observed frequency when source moves toward observer
Use m/s, defined inside each function.