The relationship between period and frequency is an exact mathematical inverse: frequency is the number of complete cycles that occur per second (measured in Hertz), while period is the exact time in seconds it takes to complete one full cycle. If you know one value, you inherently know the other, and this inverse bond dictates everything from the physical size of a power transformer to the timebase settings on your oscilloscope.
In electrical engineering and bench troubleshooting, we rarely deal with these concepts in isolation. According to the National Institute of Standards and Technology (NIST), time and frequency are two sides of the same metrological coin. When you measure the wall outlet with a multimeter, you are reading the RMS voltage of a wave defined by its frequency. When you probe a switching regulator with an oscilloscope, you are usually measuring the period to calculate the switching frequency.
Frequency (f) = 1 / Period (T)
Period (T) = 1 / Frequency (f)
Where f is in Hertz (Hz) and T is in seconds (s).
The Core Inverse Formula and Reference Table
Because the relationship is strictly inverse, as frequency increases, the period shrinks proportionally. This is why radio frequency (RF) engineers deal in nanoseconds, while power grid engineers deal in milliseconds. Below is a data-dense reference table mapping common electrical frequencies to their exact periods and angular frequencies.
| Frequency (Hz) | Period (Time) | Angular Freq (rad/s) | Typical Application / Context |
|---|---|---|---|
| 50 Hz | 20.00 ms | 314.16 | EU / UK / AU Mains AC Power |
| 60 Hz | 16.67 ms | 376.99 | US / Canada Mains AC Power |
| 400 Hz | 2.50 ms | 2513.27 | Aircraft & Aerospace Power Systems |
| 1 kHz | 1.00 ms | 6283.18 | Audio Sine Wave Testing |
| 100 kHz | 10.00 µs | 628,318 | Standard Silicon SMPS Buck Converters |
| 1.5 MHz | 666.67 ns | 9,424,777 | Modern GaN Fast Chargers (USB-C PD) |
| 2.4 GHz | 0.417 ns | 15,079,644,000 | WiFi / Bluetooth RF Carriers |
Worked Numeric Examples: From Mains to Switching Supplies
Let's run the math on two scenarios you will actually encounter on the bench: a standard 60Hz AC mains cycle and a modern 100 kHz switching power supply.
Example 1: 60Hz US Mains Power and TRIAC Dimming
In North America, the grid operates at a nominal 60 Hz. To find the period:
T = 1 / 60 = 0.01666... seconds, which we write as 16.67 milliseconds (ms).
Why this matters practically: If you are building an AC phase-angle dimmer using a TRIAC and a zero-crossing detector (like the H11AA1 optocoupler), you need to know when to fire the gate. One full sine wave cycle is 360 degrees and takes 16.67 ms. If you want to dim the light by delaying the turn-on by 90 degrees (a quarter of the cycle), you must wait exactly 4.16 ms after the zero-crossing pulse before sending the trigger signal to the TRIAC. If your microcontroller timer is off by even 1 ms, your dimming curve will look erratic.
Example 2: 100 kHz Buck Converter Dead-Time
Modern switch-mode power supplies (SMPS) chop DC voltage at high frequencies to reduce the physical size of inductors and capacitors. Let's look at a standard 100 kHz buck converter.
T = 1 / 100,000 = 0.00001 seconds, or 10 microseconds (µs).
Why this matters practically: In a high-side N-channel MOSFET driver, the bootstrap capacitor needs time to recharge during the low-side conduction phase. If the controller datasheet specifies a minimum 'off-time' (dead-time) of 1.5 µs to guarantee bootstrap charging, your maximum 'on-time' is physically limited to 8.5 µs. This means your maximum duty cycle is 85% (8.5 µs / 10 µs). You cannot achieve a 95% duty cycle at 100 kHz with this specific controller; you would have to lower the frequency (increasing the period) to allow more absolute on-time.
Where You Meet This in Practice (And What It Changes)
Understanding the inverse relationship between period and frequency is not just an academic exercise; it fundamentally alters how components behave in a real circuit. As detailed in All About Circuits, alternating current waveforms dictate reactive impedance.
X_L = 2 * π * f * LBecause frequency (f) is in the numerator, doubling the frequency doubles the inductive reactance (opposition to AC current).
1. Transformer and Inductor Sizing
This reactance formula is exactly why commercial aircraft use 400 Hz power instead of 60 Hz. At 400 Hz, the period is only 2.5 ms. Because the frequency is nearly 7 times higher than ground power, the inductive reactance of a transformer's primary winding is 7 times higher for the same amount of copper and iron. This allows aircraft to use dramatically smaller, lighter transformers and motors—a critical requirement for aviation weight limits. The tradeoff is higher core losses and increased voltage drop over long cables, which is acceptable in the short fuselage of a plane but terrible for a cross-country power grid.
2. Oscilloscope Timebase Setup
When troubleshooting a circuit, misinterpreting the period leads to useless scope readings. If you are probing a 1.5 MHz GaN fast charger switching node, the period is roughly 667 nanoseconds. If your oscilloscope timebase is set to the default 1 ms/div, the screen will just show a solid, blurry yellow block of noise. You must adjust the timebase to at least 200 ns/div to stretch the waveform out and visually confirm the period and ringing.
3. Capacitive Reactance and Filtering
Conversely, capacitive reactance (X_C = 1 / (2 * π * f * C)) drops as frequency rises. A 100nF decoupling capacitor presents a high impedance to 60 Hz mains hum (blocking it), but presents a near-short circuit to 100 MHz RF noise, shunting it safely to ground. The period of the RF noise is so short that the capacitor can absorb and release the charge almost instantaneously.
Common Confusions: Period vs. Pulse Width
The most frequent mistake hobbyists and junior technicians make is confusing period with pulse width (or duty cycle), especially when working with PWM (Pulse Width Modulation) signals from microcontrollers like the Arduino or ESP32.
The Traffic Light Analogy:
Imagine a traffic light on a fixed automated timer. The period is the total time it takes for the light to go from Green, to Yellow, to Red, and back to Green again (let's say 60 seconds). The frequency is how many full cycles it completes in a minute (1 cycle per minute). The pulse width is strictly how long the green light stays illuminated during that cycle (e.g., 30 seconds).
If you change the green light duration to 45 seconds, you have changed the duty cycle (from 50% to 75%) and the pulse width, but the period remains exactly 60 seconds, and the frequency remains exactly 1 cycle per minute. When configuring hardware timers on an ESP32 using the LEDC peripheral, you must set the frequency (which locks the period) independently of the duty cycle (which dictates the pulse width within that period).
Frequently Asked Questions
Can a circuit have a frequency of 0 Hz?
Yes. A frequency of 0 Hz means the wave never completes a cycle, which is the definition of pure Direct Current (DC). Mathematically, the period of a 0 Hz signal approaches infinity, meaning the state never changes.
Why do we use angular frequency (ω) instead of standard frequency (f)?
Standard frequency (f) measures cycles per second, which is great for digital counters. Angular frequency (ω = 2πf) measures radians per second. Because one full sine wave cycle maps perfectly to a 360-degree circle (2π radians), using angular frequency makes the calculus and phasor math of AC circuit analysis much cleaner, eliminating the need to constantly multiply by 2π in impedance formulas.
Does the period change if the voltage amplitude changes?
No. In a linear, time-invariant system, the period and frequency are entirely independent of the amplitude (voltage or current peak). A 120V RMS 60Hz sine wave has the exact same 16.67 ms period as a 12V RMS 60Hz sine wave from a doorbell transformer. According to Fluke's electrical measurement guidelines, modern multimeters measure frequency by tracking the zero-crossing points of the voltage wave, ignoring the peak amplitude entirely.






