Logarithms in the Real World
Sound and Decibels
The human ear can detect an enormous range of sound intensities — from a barely perceptible whisper to a jet engine. Because this range spans 12 orders of magnitude, a linear scale would be impractical. Decibels use a base-10 logarithm: dB = 10 × log₁₀(I / I₀), where I₀ = 10⁻¹² W/m². A normal conversation (60 dB) is 10&sup6; times more intense than the threshold of hearing.
pH and Chemistry
The pH scale measures acidity: pH = −log₁₀[H⊃]. Pure water at 25°C has [H⊃] = 10⁻⁷ mol/L, giving pH 7. Each pH unit represents a 10× change in concentration — vinegar at pH 3 is 10,000 times more acidic than water.
Earthquake Magnitude
The Richter scale uses M = log₁₀(A/A₀). A magnitude 7 earthquake releases roughly 32 times more energy than a magnitude 6, because each whole number increase corresponds to about 31.6× more seismic energy.
Information Theory and Computers
Binary logarithms (log₂) underpin computer science. The number of bits needed to represent n possibilities is ⌈log₂(n)⌉. This is why 8 bits can store 2⁸ = 256 values, and why searching a sorted list of n items takes O(log n) comparisons.
Finance and Doubling Time
Compound growth uses natural logarithm to solve for time: t = ln(FV/PV) / ln(1 + r). The Rule of 72 estimates doubling time as 72/r%, derived from the logarithm approximation ln(2) / r ≈ 0.693/r.