You cannot directly convert decibels (dB) to Hertz (Hz) because they measure fundamentally different physical properties: dB is a dimensionless logarithmic ratio of power or amplitude, while Hz is an absolute unit of frequency. However, if your actual goal is to find the cutoff frequency in Hz where a signal drops by a specific dB value (such as the standard -3dB point in a filter), the answer is fixed by your circuit's resistance and capacitance. For a standard first-order RC low-pass filter using a 10kΩ resistor and a 10nF capacitor, the -3dB cutoff frequency is exactly 1,591.5 Hz.

The Core Formula: fc = 1 / (2πRC)
Substituting our values: fc = 1 / (2 × 3.14159 × 10,000Ω × 0.00000001F) = 1,591.54 Hz

The Math: Mapping dB Drop to Hz in Filter Circuits

When engineers talk about "converting" dB to Hz, they are referencing a Bode plot—a graph showing how a circuit's gain (in dB) changes across a frequency spectrum (in Hz). The most common benchmark is the -3dB point, also known as the half-power point. At this frequency, the output voltage drops to 70.7% of the input voltage ($20 \log_{10}(0.707) \approx -3.01$ dB).

To understand how the dB drop accelerates as you move past the cutoff frequency, here is a spec-sheet-table showing the exact amplitude attenuation for our 1,591.5 Hz RC filter across a ±20% frequency range.

Frequency (Hz) Variance from fc Gain (dB) Voltage Ratio (Vout/Vin)
1,273 Hz -20% -1.94 dB 0.799
1,432 Hz -10% -2.42 dB 0.756
1,591 Hz 0% (Cutoff) -3.01 dB 0.707
1,750 Hz +10% -3.62 dB 0.659
1,909 Hz +20% -4.24 dB 0.613

Notice that a first-order filter rolls off at roughly 6 dB per octave (or 20 dB per decade) past the cutoff. If you need a steeper drop—say, hitting -20dB at exactly 1,909 Hz—you must increase the filter order (e.g., using an active Sallen-Key op-amp topology) rather than just changing the passive components. For a deeper look at passive filter roll-offs, refer to this guide on low-pass filters.

How System Voltage and Phase Shift the dB Reference

In low-voltage signal processing (like audio or Arduino PWM filtering), dB is purely a relative ratio. The cutoff frequency in Hz does not care if your input signal is 1V or 5V. However, in power electronics—such as Variable Frequency Drives (VFDs), EMI filters, and harmonic analysis—dB is often used to measure absolute power (dBm or dBW) or distortion relative to a carrier (dBc). In these scenarios, the baseline voltage and phase configuration drastically shift your dB calculations.

Power System dB Shift Rule: Because power scales with the square of voltage ($P = V^2/R$), doubling your system voltage increases the absolute power by a factor of 4, which shifts your dB reference by exactly +6.02 dB.
  • 120V Single-Phase: The baseline reference. A 10W EMI noise signal measured here sits at a specific dBm level.
  • 230V Single-Phase: Pushing the same 10W through a 230V system changes the current, but if you are measuring voltage-driven EMI, the baseline reference shifts by +5.6 dB compared to 120V. Filter attenuation specs in Hz remain identical, but the absolute dBm floor moves.
  • 480V 3-Phase: Three-phase systems introduce a $\sqrt{3}$ multiplier for total power calculations. When calculating harmonic distortion (dBc) on a 480V 3-phase bus, the total apparent power baseline shifts by +4.77 dB compared to an equivalent single-phase line-to-neutral calculation. If your harmonic filter is tuned to 250 Hz (the 5th harmonic on a 50Hz grid), the Hz target is fixed, but the dB attenuation required to meet IEEE 519 compliance scales with this 3-phase power baseline.

Decision Path: Picking Components for a Target Hz and dB

When you know the exact Hz cutoff and the required dB attenuation, your final step is selecting the physical capacitor. The dielectric material dictates how the capacitor behaves at high frequencies. Use this decision-tree-table to terminate your design with a concrete part number.

Target Cutoff Hz Required Capacitance Range Dielectric / Type Concrete Part Pick
< 10 Hz (Sub-audio) 10µF to 1,000µF Aluminum Electrolytic Panasonic FR Series (e.g., EEU-FR1V101)
10 Hz - 1 kHz 100nF to 10µF Metallized Polypropylene Film Wima MKP10 Series
1 kHz - 100 kHz 1nF to 100nF C0G / NP0 Ceramic Kemet C Series (e.g., C315C104K5R5TA)
> 100 kHz (RF/EMI) 10pF to 1nF X7R Ceramic or Mica Murata GRM Series (e.g., GRM155R71H104K)

Default Recommendation: If your target falls in the 1 kHz to 100 kHz range (the most common microcontroller and audio crossover band), always default to C0G/NP0 ceramic capacitors. Unlike X7R or Y5V dielectrics, C0G exhibits zero voltage coefficient and negligible microphonics, ensuring your calculated Hz cutoff doesn't drift when the signal amplitude changes.

When This Conversion is Meaningless

Attempting to map dB to Hz will yield useless data if you lack the foundational assumptions that anchor the math. Specifically, the conversion is meaningless under these conditions:

  1. Unknown Reference Impedance: If you are working with audio equipment (600Ω standard) versus RF equipment (50Ω standard), a reading of 0 dBm represents entirely different voltages. Without knowing the reference impedance, you cannot calculate the voltage ratio required to find the -3dB Hz point.
  2. Unknown Power Factor (PF) in AC Harmonics: In AC power systems, calculating the dB attenuation of a specific harmonic frequency (Hz) requires knowing the real power versus apparent power. If the load's Power Factor is unknown, your dBc calculations for filter sizing will be off by several decibels, leading to undersized inductors.
  3. Purely DC Circuits: In a steady-state DC circuit, the frequency is exactly 0 Hz. While you can measure voltage drops in dB, mapping them to a frequency spectrum is physically impossible.

FAQ: Common dB and Hz Crossover Questions

Does a -6dB drop mean the frequency is doubled?

Only in a first-order filter. In a standard RC low-pass filter, a -6dB drop occurs at roughly double the cutoff frequency (one octave up). However, in a second-order active filter (like a Butterworth), the roll-off is 12 dB per octave, meaning a -6dB drop might occur much closer to the actual cutoff frequency.

How do I convert a dB/decade spec to Hz?

A "decade" represents a 10x multiplication in frequency. If a datasheet specifies a roll-off of 20 dB/decade, it means that if your -3dB point is at 100 Hz, the signal will be attenuated by 23 dB (3dB + 20dB) at 1,000 Hz. You don't convert the rate to Hz; you use the rate to predict the dB drop at any target Hz using the formula: $Attenuation = 20 \times \log_{10}(f_{target} / f_{cutoff})$.

For more on calculating absolute power ratios in mixed-signal systems, review the All About Circuits primer on decibels.