Jed Rembold
March 2, 2026
\[\begin{aligned} \text{% of light } &= \frac{\text{Area of planet}}{\text{Area of star}} \\ &= \frac{\pi R^2_p}{\pi R^2_s} \\ &= \left(\frac{R_p}{R_s}\right)^2 \end{aligned}\]



Periodograms are excellent for determining the frequency / period of hidden signals, but they don’t let you see those signals
Alternatively, could guess a period and then use that to “fold” the signal back in on itself
The phase of the signal describes how far is signal is through its period
Calculating phase is a classic example of using the modulo operator:
phase = times % period
normalize_phase = phase / period