n.
A logarithm to the base 10, especially as distinguished from a natural logarithm.
| Dictionary: common logarithm |
A logarithm to the base 10, especially as distinguished from a natural logarithm.
| 5min Related Video: common logarithm |
| Measures and Units: common logarithm |
The logarithm to the base 10, i.e. the power to which 10 must be raised to equal the given number, written for some number x as log10 x but more usually as just log x.
| WordNet: common logarithm |
The noun has one meaning:
Meaning #1:
a logarithm to the base 10
| Wikipedia: Common logarithm |
The common logarithm is the logarithm with base 10. It is also known as the decadic logarithm, named after its base. It is indicated by log10(x), or sometimes Log(x) with a capital L (however, this notation is ambiguous since it can also mean the complex natural logarithmic multi-valued function). On calculators it is usually "log", but mathematicians usually mean natural logarithm rather than common logarithm when they write "log".
Before the early 1970s, hand-held electronic calculators were not yet in widespread use. Because of their utility in saving work in laborious calculations by hand on paper, tables of base 10 logarithms were found in appendices of many books. Such a table of "common logarithms" giving the logarithm of each number in the left-hand column, which ran from 1 to 10 by small increments, perhaps 0.01 or 0.001. There was only a need to include numbers between 1 and 10, since if one wanted the logarithm of, for example, 120, one would know that

The very last number ( 0.079181)—the fractional part of the logarithm of 120, known as the mantissa of the common logarithm of 120—was found in the table. (This stems from an older, non-numerical, meaning of the word mantissa: a minor addition or supplement, e.g. to a text. For a more modern use of the word mantissa, see significand.) The location of the decimal point in 120 tells us that the integer part of the common logarithm of 120, called the characteristic of the common logarithm of 120, is 2.
Similarly, for numbers less than 1 we have

The bar over the characteristic indicates that it is negative whilst the mantissa remains positive. Negative logarithm values were rarely converted to a normal negative number (−0.920819 in the example).
In addition, slide rules work by using a logarithmic scale.
Contents |
Common logarithms are sometimes also called Briggsian logarithms after Henry Briggs, a 17th-century British mathematician.
Because base 10 logarithms were most useful for computations, engineers generally wrote "log(x)" when they meant log10(x). Mathematicians, on the other hand, wrote "log(x)" when they mean loge(x) for the natural logarithm. Today, both notations are found. Since hand-held electronic calculators are designed by engineers rather than mathematicians, it became customary that they follow engineers' notation. So ironically, that notation, according to which one writes "ln(x)" when the natural logarithm is intended, may have been further popularized by the very invention that made the use of "common logarithms" far less common, electronic calculators.
The numerical value for logarithm to the base 10 can be calculated with the following identity.

as procedures exist for determining the numerical value for logarithm base e and logarithm base 2.
Alternatively below is a correct but inefficient algorithm written in Python that can calculate the common logarithm to an arbitrary number of decimal places.[1]
#!/usr/bin/python from __future__ import division import math # Calculates the logarithm (of any base > 1) of a positive number # to the an arbitary number of decimal places. The accuracy is # subjected only to limitation of the floating point representation. def log(X,base=math.e,decimalplace=12): integer_value=0 while X < 1: integer_value -= 1 X = X * base while X >= base: integer_value += 1 X /= base decimal_fraction = 0.0 partial = 1.0 # Replace X with X to the 10th power X **= 10 while decimalplace > 0: partial /= 10 digit=0 while X >= base: digit += 1 X /= base decimal_fraction += digit * partial # Replace X with X to the 10th power X **= 10 decimalplace -= 1 return integer_value + decimal_fraction if __name__ == '__main__': value = 4.5 print " X =",value print " 6 decimal places LOG(X) =",log(value,base=10,decimalplace=6) print " 9 decimal places LOG(X) =",log(value,base=10,decimalplace=9) print "12 decimal places LOG(X) =",log(value,base=10,decimalplace=12) # Sample Run # # $ python log.py # X = 4.5 # 6 decimal places LOG(X) = 0.653212 # 9 decimal places LOG(X) = 0.653212513 # 12 decimal places LOG(X) = 0.653212513775
This entry is from Wikipedia, the leading user-contributed encyclopedia. It may not have been reviewed by professional editors (see full disclaimer)
| Best of the Web: common logarithm |
Some good "common logarithm" pages on the web:
Math mathworld.wolfram.com |
| briggsian logarithm | |
| absorbance (physical chemistry) | |
| decibels above 1 kilowatt (electricity) |
| What is the logarithm of 2? Read answer... | |
| What is the logarithm of log -1? Read answer... | |
| What is the logarithm of 100? Read answer... |
| What is the sum of first n terms when the first term of an arithmetic progression is logarithm of a and second term is logarithm of b? | |
| What is the logarithm of 7? | |
| In pH what is logarithm? |
Copyrights:
![]() | Dictionary. The American Heritage® Dictionary of the English Language, Fourth Edition Copyright © 2007, 2000 by Houghton Mifflin Company. Updated in 2007. Published by Houghton Mifflin Company. All rights reserved. Read more | |
![]() | Measures and Units. A Dictionary of Weights, Measures, and Units. Copyright © Donald Fenna 2002, 2004. All rights reserved. Read more | |
![]() | WordNet. WordNet 1.7.1 Copyright © 2001 by Princeton University. All rights reserved. Read more | |
![]() | Wikipedia. This article is licensed under the GNU Free Documentation License. It uses material from the Wikipedia article "Common logarithm". Read more |
Mentioned in