Amplitude to dB Converter
Convert any linear amplitude ratio to decibels. Use dB = 20·log₁₀(A) for voltage/SPL/dBFS or dB = 10·log₁₀(A) for power. Output: dB value in current mode, equivalent in the other mode, percentage of reference, log₁₀(A), and zone classification.
Input
Result
Common Amplitude → dB Reference
| Amplitude (A) | dB (voltage / 20·log) | dB (power / 10·log) | Notes |
|---|---|---|---|
| 100 | +40 dB | +20 dB | 100× gain (voltage) |
| 10 | +20 dB | +10 dB | 10× amplitude |
| 2 | +6.02 dB | +3.01 dB | Double amplitude / double power |
| √2 ≈ 1.4142 | +3.01 dB | +1.51 dB | +3 dB voltage point |
| 1.0 | 0 dB (unity) | 0 dB (unity) | No change |
| 1/√2 ≈ 0.7071 | −3.01 dB | −1.51 dB | −3 dB voltage / half-power for power mode |
| 0.5012 | −6.00 dB | −3.00 dB | Half amplitude / half power |
| 0.5 | −6.02 dB | −3.01 dB | Exactly half (linear) |
| 0.1 | −20 dB | −10 dB | 10% amplitude |
| 0.01 | −40 dB | −20 dB | 1% amplitude |
| 0.001 | −60 dB | −30 dB | Audible noise floor |
| 1.585e-5 | ≈ −96 dB | ≈ −48 dB | 16-bit theoretical floor |
| 1e-6 | −120 dB | −60 dB | Deep noise floor |
| 6.31e-8 | ≈ −144 dB | ≈ −72 dB | 24-bit theoretical floor |
| 0 | −∞ dB | −∞ dB | Mathematical silence |
About Amplitude & Decibels
Decibels compress a huge linear range into a manageable logarithmic one. A linear amplitude of 100 (100× the reference) becomes +40 dB; an amplitude of 0.00001585 becomes −96 dB. The conversion direction matters: amplitude (voltage, sound pressure, sample value) uses 20·log₁₀(A), while power (watts, energy flux) uses 10·log₁₀(A). The factor of 2 reflects the relationship P = A² — squaring inside a log multiplies the result by 2.
When to use ×20 vs ×10
Use the voltage (×20) formula when the input value represents an amplitude-like quantity — voltage, sample value in a digital audio file, sound pressure, current, or any field-strength quantity. This is the formula behind dBFS, dBu, dBV, and dB SPL. Use the power (×10) formula when the input represents a power-like quantity — watts, intensity, or energy. This is the formula behind dBW, dBm, and most antenna gain figures. If in doubt: voltage → 20, power → 10.
Why amplitude=0 gives −∞ dB
log₁₀(0) is mathematically undefined, but the limit as A → 0⁺ is negative infinity. Digital systems represent this as the "mathematical silence" — no signal at all. In practice, even "silent" digital files have a noise floor set by their bit depth: 16-bit floor ≈ −96 dBFS, 24-bit floor ≈ −144 dBFS, 32-bit float floor ≈ −192 dBFS. True −∞ dB is only meaningful as a mathematical limit.
Why negative amplitudes are non-physical
A negative amplitude doesn't represent a quieter signal — it represents a phase inversion. The level (magnitude) is the same; only the polarity flips. Since log₁₀ of a negative number is undefined in the reals, this converter requires A ≥ 0. If your signal has positive and negative excursions (every audio signal does), take the absolute value or use the peak or RMS envelope before converting.