A pure "hertz to decibels converter" is a physical impossibility because hertz (Hz) measures frequency (cycles per second) while decibels (dB) measure a logarithmic ratio of power or amplitude. You cannot convert one to the other directly like inches to centimeters. However, if you are searching for the dB attenuation at 1000 Hz for a standard 1st-order low-pass filter with a 500 Hz cutoff frequency, the direct answer is -6.99 dB.
The formula used to calculate this voltage attenuation is AdB = 10 log10 [ 1 / (1 + (f/fc)2n) ]. Substituting our target values (f = 1000 Hz, fc = 500 Hz, filter order n = 1): 10 log10 [ 1 / (1 + (1000/500)2(1)) ] = 10 log10(1/5) = -6.989 dB. To map any frequency to a decibel value, you must define the system's transfer function, which brings us to the core assumptions required for this calculation.
The Core Assumptions: What Fixes the Hz-to-dB Answer?
Because dB is a relative ratio, mapping a specific Hz value to a dB value requires fixing three assumptions: the filter order (n), the cutoff frequency (fc), and the reference baseline. In audio crossovers, EMI filtering, or ESP32 ADC anti-aliasing circuits, these parameters define the Bode plot slope. According to Analog Devices, the roll-off rate is strictly dictated by the number of poles in your filter network.
| Filter Order (n) | Poles | Roll-off (dB/decade) | Roll-off (dB/octave) | Phase Shift at fc |
|---|---|---|---|---|
| 1st Order | 1 | -20 dB/dec | -6.02 dB/oct | -45° |
| 2nd Order (Butterworth) | 2 | -40 dB/dec | -12.04 dB/oct | -90° |
| 3rd Order | 3 | -60 dB/dec | -18.06 dB/oct | -135° |
| 4th Order (Linkwitz-Riley) | 4 | -80 dB/dec | -24.08 dB/oct | -180° |
How the Answer Shifts for 120V vs 230V vs 3-Phase Systems
In pure low-voltage signal processing, the relative dB attenuation is entirely independent of voltage. A 500 Hz cutoff filter attenuates 1000 Hz by -6.99 dB whether the input signal is 3.3V from a microcontroller or 12V from a bench supply. However, in power quality and VFD (Variable Frequency Drive) harmonic analysis, the baseline voltage radically shifts the absolute dB reading.
Voltage Baseline Shift: If you are converting harmonic frequencies (e.g., the 3rd harmonic at 180 Hz on a 60 Hz grid) to absolute dBV, a 230V system yields a fundamentally higher baseline than a 120V system. Furthermore, in a balanced 3-phase system, triplen harmonics (3rd, 9th, 15th) cancel out in the line currents. This means the dB amplitude of the 180 Hz harmonic drops to the noise floor, radically shifting your dB reading compared to a single-phase 120V branch circuit where that 180 Hz harmonic will show a massive dB spike on a spectrum analyzer.
Neighboring Values: Attenuation Table (±20% Range)
When tuning an active filter or debugging an audio equalizer, you rarely look at just one frequency. You need to see the slope. Below is the exact calculated attenuation for a 1st-order low-pass filter (fc = 500 Hz) across a ±20% range surrounding our 1000 Hz target. These values are calculated using the standard voltage-ratio Bode equation, avoiding the common mistake of using the 10*log power formula for voltage measurements (as noted in All About Circuits).
| Frequency (Hz) | Ratio (f / fc) | Attenuation (dB) | Signal Passed (%) |
|---|---|---|---|
| 800 Hz (-20%) | 1.60 | -5.51 dB | 53.0% |
| 900 Hz (-10%) | 1.80 | -6.27 dB | 48.6% |
| 1000 Hz (Target) | 2.00 | -6.99 dB | 44.7% |
| 1100 Hz (+10%) | 2.20 | -7.66 dB | 41.4% |
| 1200 Hz (+20%) | 2.40 | -8.30 dB | 38.5% |
Notice that the attenuation does not scale linearly. The logarithmic nature of the decibel scale means that as you move further past the cutoff frequency, the dB drop per 100 Hz increment begins to stabilize toward the asymptotic -20 dB/decade slope.
When the Conversion is Meaningless (and the Power Factor Trap)
Searching for a hertz to decibels converter becomes entirely meaningless under three specific bench and jobsite conditions:
- Unknown Reference Amplitude: Decibels are a ratio. If you do not know the 0 dB reference point (e.g., 1mW for dBm, 1V for dBV, or the passband gain of your specific op-amp circuit), mapping a frequency to a dB value yields a number with no physical reality.
- Non-Linear Systems: The formulas above assume linear, time-invariant (LTI) systems. If you are pushing a signal through a saturated transformer core or a clipping transistor amplifier, the transfer function breaks down, and standard Bode plot math will give you dangerously wrong dB predictions.
- The Power Factor (pf) Unknown Trap: In AC power systems, attempting to map a frequency (like 60 Hz mains) to a dB power loss is meaningless if the power factor is unknown. Decibels in power systems often describe insertion loss or reactive attenuation. Without knowing the phase angle between voltage and current (the pf), you cannot determine the real power (Watts) versus apparent power (VA). You cannot calculate the true dB loss across a contactor or a long feeder cable without factoring in the reactive impedance (inductance/capacitance) of the load.
FAQ: Real-World Hz and dB Scenarios
Can I use a hertz to decibels converter for audio EQ and room correction?
Not directly, but you use the underlying math. When tuning a subwoofer crossover at 80 Hz, you are looking at the dB attenuation slope (usually 12 dB/octave or 24 dB/octave for Linkwitz-Riley). You calculate the dB drop at 160 Hz (one octave up) based on the filter order, not by converting the 160 Hz directly into a dB value.
How do I measure 60 Hz mains hum in dB on my oscilloscope?
You don't convert 60 Hz to dB. Instead, you measure the peak-to-peak voltage of the 60 Hz noise spike on your scope, and then convert that voltage into dBV or dBu relative to your system's nominal signal level. For example, a 10mV RMS 60 Hz hum on a 1V RMS audio line is calculated as 20*log10(0.010 / 1.0) = -40 dB.
Why do VFD manuals list harmonic frequencies in Hz but limits in dB?
Variable Frequency Drives generate high-frequency switching noise (often 2 kHz to 16 kHz). The Hz value tells you where the EMI interference will show up on a spectrum analyzer, while the dB value (usually dBµV) tells you the amplitude of that interference relative to EMC compliance limits like CISPR 11. You need both values to design the correct LC filter.






