Logarithm Function
A Logarithm Function is a binary numeric function that accepts positive number [math]\displaystyle{ x }[/math] and number [math]\displaystyle{ b }[/math] and returns number [math]\displaystyle{ y }[/math] (logarithm value) such that [math]\displaystyle{ x=b^y }[/math].
- AKA: LOG.
- Context:
- It can range from being an Abstract Logarithm to being a Logarithm Structure.
- It can range from being a Binary Logarithm [math]\displaystyle{ \log_2 }[/math] to being a ...
- It can have Function Properties:
- [math]\displaystyle{ \log_b(1) = 0 }[/math]
- [math]\displaystyle{ \log_b(b) = 1 }[/math]
- [math]\displaystyle{ \log_b(x \times y) = log_b(x) + log_b(y) }[/math]
- [math]\displaystyle{ \log_b(x/y) = log_b(x) - log_b(y) }[/math]
- [math]\displaystyle{ \log_b(c \times x) = c \times log_b(x) }[/math], for constant [math]\displaystyle{ c }[/math].
- [math]\displaystyle{ \log_b(x) = log_b(c) \times log_c(x) = \frac{log_c(x)}{log_c(b)} }[/math]
- Example(s):
- Counter-Example(s):
- See: Exponentiation Operation, Base (Exponentiation), Common Logarithm, Binary Logarithm.
References
2015
- (Wikipedia, 2015) ⇒ http://en.wikipedia.org/wiki/logarithm Retrieved:2015-2-14.
- In mathematics, the logarithm of a number is the exponent to which another fixed value, the base, must be raised to produce that number. For example, the logarithm of 1000 to base 10 is 3, because 10 to the power 3 is 1000: More generally, for any two real numbers b and x where b is positive and b ≠ 1, :[math]\displaystyle{ y=b^x\Leftrightarrow x=\log_b(y) }[/math] :[math]\displaystyle{ \text{For example}: 4^3 = 64\leftrightarrow 3 = \log_4 (64) }[/math]
The logarithm to base 10 (b = 10)is called the common logarithm and has many applications in science and engineering. The natural logarithm has the irrational (transcendental) number e (≈ 2.718) as its base; its use is widespread in mathematics, especially calculus. The binary logarithm uses base 2 (b = 2)and is prominent in computer science.
Logarithms were introduced by John Napier in the early 17th century as a means to simplify calculations. They were rapidly adopted by navigators, scientists, engineers, and others to perform computations more easily, using slide rules and logarithm tables. Tedious multi-digit multiplication steps can be replaced by table look-ups and simpler addition because of the fact — important in its own right — that the logarithm of a product is the sum of the logarithms of the factors: :[math]\displaystyle{ \log_b(xy) = \log_b (x) + \log_b (y), \, }[/math]
provided that b, x and y are all positive and b ≠ 1.
The present-day notion of logarithms comes from Leonhard Euler, who connected them to the exponential function in the 18th century.
Logarithmic scales reduce wide-ranging quantities to smaller scopes. For example, the decibel is a unit quantifying signal power log-ratios and amplitude log-ratios (of which sound pressure is a common example). In chemistry, pH is a logarithmic measure for the acidity of an aqueous solution. Logarithms are commonplace in scientific formulae, and in measurements of the complexity of algorithms and of geometric objects called fractals. They describe musical intervals, appear in formulae counting prime numbers, inform some models in psychophysics, and can aid in forensic accounting.
In the same way as the logarithm reverses exponentiation, the complex logarithm is the inverse function of the exponential function applied to complex numbers. The discrete logarithm is another variant; it has uses in public-key cryptography.
- In mathematics, the logarithm of a number is the exponent to which another fixed value, the base, must be raised to produce that number. For example, the logarithm of 1000 to base 10 is 3, because 10 to the power 3 is 1000: More generally, for any two real numbers b and x where b is positive and b ≠ 1, :[math]\displaystyle{ y=b^x\Leftrightarrow x=\log_b(y) }[/math] :[math]\displaystyle{ \text{For example}: 4^3 = 64\leftrightarrow 3 = \log_4 (64) }[/math]
2009
- http://www.math.com/tables/algebra/exponents.htm
- y = logb(x) if and only if x=by
- logb(1) = 0
- logb(b) = 1
- logb(x*y) = logb(x) + logb(y)
- logb(x/y) = logb(x) - logb(y)
- logb(x n) = n logb(x)
- logb(x) = logb(c) * logc(x) = logc(x) / logc(b)