Logarithms: The Inverse of Exponentiation
A logarithm answers the question: "What exponent do I need to raise the base to in order to get this number?" If by = x, then logb(x) = y. Logarithms were invented by John Napier in 1614 as a computational tool to simplify multiplication and division into addition and subtraction. Today, logarithms are fundamental to information theory, signal processing, earthquake measurement, sound intensity, pH chemistry, algorithm analysis, and virtually every branch of science and engineering.
Types of Logarithms and Key Formulas
Base 10. log(1000) = 3 because 10^3 = 1000
Used in: pH, decibels, Richter scale
Natural Logarithm (ln or log_e):
Base e = 2.71828... ln(e) = 1
Used in: calculus, growth/decay, finance
Binary Logarithm (log2):
Base 2. log2(1024) = 10
Used in: computer science, information theory
Change of Base Formula:
log_b(x) = ln(x) / ln(b) = log(x) / log(b)
Key Logarithm Rules:
Product: log(xy) = log(x) + log(y)
Quotient: log(x/y) = log(x) - log(y)
Power: log(x^n) = n × log(x)
Identity: log_b(b) = 1
Zero: log_b(1) = 0
Inverse: b^(log_b(x)) = x
Real-World Applications of Logarithms
The Richter scale for earthquakes is logarithmic base 10: a magnitude 7 earthquake releases 10 times the amplitude of a magnitude 6. Decibels measure sound intensity logarithmically: each 10 dB increase represents a 10-fold increase in intensity. pH measures acidity as pH = -log10[H+]: each unit decrease represents a 10-fold increase in hydrogen ion concentration.
In computer science, binary logarithm determines the number of bits needed to represent a number and appears in algorithm complexity analysis: binary search runs in O(log n) time. In finance, natural logarithms model continuous compounding: doubling time at rate r is t = ln(2)/r. Information theory defines entropy using log2: the information content of an event with probability p is -log2(p) bits.